这是我在节点js中的响应代码。
app.get('/receive', async function (req, res) {
res.render('pages/index', {
items: returndata.data
});
});
我想将数据加载到Jquery数据表中。所以我在script.js中使用以下脚本。
var records = <% - JSON.stringify(items) %>
console.log(records);
$(document).ready(function () {
$('#example').DataTable({
data: records
});
});
运行此代码时,浏览器将在Uncaught SyntaxError: Unexpected token <
中抛出script.js:1
。如何解决此错误?