gpt4 book ai didi

javascript - Underscore.js _.template 导致 Chrome 扩展出错

转载 作者:可可西里 更新时间:2023-11-01 01:18:18 25 4
gpt4 key购买 nike

如果我使用 underscore.js_.template()在 Google Chrome 扩展程序中,我在控制台中收到以下错误:

Uncaught Error: Code generation from strings disallowed for this context

有什么办法可以克服这个错误吗?

最佳答案

非常感谢 Chromium 列表贡献者,他指出要按照下划线的方式创建一个 Function 对象,需要 manifest.json 选项content_security_policy 以包含“不安全评估”。

例如,您的 manifest.json 可能是

{
"manifest_version": 2,
...
"content_security_policy": "script-src 'self' 'unsafe-eval'",
...
}

然后下划线行为将起作用,因为此策略允许它。有关格式的更多信息,请参阅有关此选项的 Chrome 文档 here .

关于javascript - Underscore.js _.template 导致 Chrome 扩展出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8807437/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com