在Chrome扩展程序弹出窗口html(点击Chrome扩展程序图标时显示的页面)我正在尝试渲染模板。我添加了下划线库,我已经写了一个小模板。
var html = _.template("<p>Blah Blah Blah</p>");
$("body").append(html);
当我这样做时,我收到以下错误:
Uncaught EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'self' chrome-extension-resource:".
我试图找到一种在弹出页面中使用模板的方法。