在Chrome扩展程序中使用模板弹出html:拒绝将字符串评估为JavaScript错误

时间:2014-08-18 19:08:50

标签: javascript google-chrome google-chrome-extension underscore.js content-script

在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:".

我试图找到一种在弹出页面中使用模板的方法。

0 个答案:

没有答案