使用 JSFiddle 加载 JS flot 外部资源
Loading JS flot external resources using JSFiddle
我正在尝试创建一个加载外部资源 (Flot) 的 JSFiddle。但是,当我添加外部资源时:
http://www.flotcharts.org/flot/jquery.flot.js
我在 JSFiddle 中收到此警报错误
You're loading resources over HTTP not HTTPS, your fiddle will not work. Do you wish to continue?
不过,flot的https版本,
https://www.flotcharts.org/flot/jquery.flot.js
有与之关联的安全警告 (在 Chrome 中,错误列为 "Your connection is not private")。将 flot 外部加载到 JSFiddle 中的正确方法是什么?
当您创建 fiddle 时,JSFiddle 请求 HTTPS 内容,但它并不需要它。
使用 https://jsfiddle.net 创建您的 fiddle(在添加您的 http:// 外部资源时单击警告上的确定)并单击保存。
点击保存后,您将被重定向到保存的 JSFiddle URL。在这个 URL 上,只需将 https://
更改为 http://
即可。
我正在尝试创建一个加载外部资源 (Flot) 的 JSFiddle。但是,当我添加外部资源时:
http://www.flotcharts.org/flot/jquery.flot.js
我在 JSFiddle 中收到此警报错误
You're loading resources over HTTP not HTTPS, your fiddle will not work. Do you wish to continue?
不过,flot的https版本,
https://www.flotcharts.org/flot/jquery.flot.js
有与之关联的安全警告 (在 Chrome 中,错误列为 "Your connection is not private")。将 flot 外部加载到 JSFiddle 中的正确方法是什么?
当您创建 fiddle 时,JSFiddle 请求 HTTPS 内容,但它并不需要它。
使用 https://jsfiddle.net 创建您的 fiddle(在添加您的 http:// 外部资源时单击警告上的确定)并单击保存。
点击保存后,您将被重定向到保存的 JSFiddle URL。在这个 URL 上,只需将 https://
更改为 http://
即可。