代码: https://gist.github.com/edsion1107/39a3edb538b7f6ddfb70d067bc455a8b
参考了这个帖子/t/472124
html2canvas.js
文件是从这里来的.
上面的代码,我保存为 index.html。
情况一:如果是从 webstorm 里,右键选择 open in browser,打开后地址栏显示: http://localhost:63343/demo/index.html?_ijt=69hjpu5jphbuja1p4kmgsfdam6
。这个时候点击那个 button 不会报错,而且也能“截图”。
情况二:如果是直接在 finder 里,直接右键通过 chrome 打开,此时点击 button,提示:Uncaught (in promise) DOMException: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported.
为啥?
1
yimity 2018-07-23 20:32:36 +08:00
一个走的是 http 服务,浏览器信任的,一个是 file,打开的本地文件,浏览器不信任。
|