Failed to execute ‘toDataURL‘ on ‘HTMLCanvasElement‘: Tainted canvases may not be exported.

  • Post author:
  • Post category:其他

html2canvas  图片跨域 网上都说 img.setAttribute("crossOrigin",'anonymous') 我加上还是没用 true 不允许跨域,改为false允许跨域 。反人类设计 版权声明:本文为zjy660358原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。原文链接:https://blog.csdn.net/zjy660358…

继续阅读 Failed to execute ‘toDataURL‘ on ‘HTMLCanvasElement‘: Tainted canvases may not be exported.

ISO8583组包、解包

  • Post author:
  • Post category:其他

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POS.Provider { public class ISO8583 { readonly int[] VLen = new int[130]; readonly int[] FLen = new int[…

继续阅读 ISO8583组包、解包

cscope.exe程序的base64文本

  • Post author:
  • Post category:其他

cscope.exe.gz.txt cscope.exe base64文件 H4sICC6q0kEAA2NzY29wZS5leGUA7JoJWFXV2scXAoIKiCJIKnjQAwgiirMpzphjSoKaaQniWA7p MSu914y0kDBEy6lynsohu2oqijiU5pBDlpZmlplw1Wa9pF35fuusdTj7HA5qfff5nud7nrvxx/99 3/Wuae+9…

继续阅读 cscope.exe程序的base64文本

c++实现欧拉回路问题

  • Post author:
  • Post category:其他

欧拉回路问题由七桥问题而来,其基本问题是是否能一次性不重复地走遍这七座桥,转换为数学问题中的图论就是指的是从图中的一个顶点出发,是否能够一次性不回头地走遍所有的边,算法代码如下 #include <iostream> #include <ctime> using namespace std; int G[5][5]; int visited[5][5]; int n = 5…

继续阅读 c++实现欧拉回路问题

编译、安装 TVM

  • Post author:
  • Post category:其他

官方安装教程 Install from Source — tvm 0.8.dev0 documentation 环境: Ubuntu 16.04.6 LTS CMake 3.14.4 g++ 5.4.0 包含三个步骤 编译 Shared Library 安装语言相关包 测试 一、编译 Shared Library 1. 安装依赖 apt-get update apt-get install -y …

继续阅读 编译、安装 TVM

飘了 我竟把软件测试中功能测试最重要的27点写在这里

  • Post author:
  • Post category:其他

话不多说,我只是一个喜欢分享整理软件测试相关的知识点的卑微萌新,直接上干货 大家如果想下载我录制的一些软件测试学习视频、面试资料 或者想和广大群友讨论 怎么学软件测试、自动化测试的都可以点这里✔← 1.页面链接检查 每一个链接是否都有对应的页面,并且页面之间切换正确。可以使用一些工具,如LinkBotPro、File-AIDCS、HTML Link Validater、Xenu等工具。LinkBo…

继续阅读 飘了 我竟把软件测试中功能测试最重要的27点写在这里

【QT 5.9.3】no such slot错误解决办法

  • Post author:
  • Post category:其他

这种问题一般有下列几个地方出错: 1.在自己写的类中加入Q_OBJECT宏 2.槽函数没有写在"private/public slots:"里面 3.这种情况是我自己出的比较低级的错误,先上代码 MyDialog.h: #pragma once #include <QtWidgets/QDialog> #include "ui_MyDialog.h" class MyDialog : …

继续阅读 【QT 5.9.3】no such slot错误解决办法

CMake简单语法

  • Post author:
  • Post category:其他

CMake官方文档 https://cmake.org/cmake/help/v3.15/index.html 基本命令方法 cmake_minimum_required 为工程设置CMake最低需求版本 cmake_minimum_required(VERSION 3.5) #检查cmake的版本,至少为3.5 project 设置工程的名称 project (hello_cmake) # 设置…

继续阅读 CMake简单语法

使用orcad的CIS时意外退出

  • Post author:
  • Post category:其他

我在使用orcad的CIS时遇到意外退出的情况,网上搜了下解决方法如下: 在 Capture CIS中原理图状态下 右键 Place Database Part  后跳出 CIS Explorer,但随后马上又蹦出一个对话框: . |( I0 `  E, E; U$ d; A' r& E 7 X* x- e% }" Y" ]5 e Tish application has quit une…

继续阅读 使用orcad的CIS时意外退出

Web server failed to start. Port 8080 was already in use.(springboot解决8080端口被占用的方法)

  • Post author:
  • Post category:其他

问题描述: Description: Web server failed to start. Port 8080 was already in use. Action: Identify and stop the process that's listening on port 8080 or configure this application to listen on another port…

继续阅读 Web server failed to start. Port 8080 was already in use.(springboot解决8080端口被占用的方法)