我尝试使用库:https://github.com/eBay/jsonpipe
<head>
<script src="https://raw.githubusercontent.com/eBay/jsonpipe/master/jsonpipe.js"></script>
</head>
<body>
<script>
jsonpipe.flow(window.location.origin + "/api/v1/search?text=" + text, {
...
}
</script>
</body>
但这给了我
jsonpipe未定义
如何包含此库?
答案 0 :(得分:0)
在浏览器中打开开发人员工具,然后查看控制台。
拒绝从“ https://raw.githubusercontent.com/eBay/jsonpipe/master/jsonpipe.js”执行脚本,因为其MIME类型(“文本/纯文本”)不可执行,并且启用了严格的MIME类型检查。
raw.githubusercontent.com不是CDN。它没有配置为托管第三方(或任何)网站的JavaScript。
您可以自己托管JS文件,或者找到一个真正的CDN来托管它。