我是 JS 的新手,我正在尝试做一些非常简单的事情。
我有一个名为“data.json”的 JSON 文件,我想加载它,所以,我这样做:
$.getJSON("data.json",function(data){
console.log(data);
});
然后我将加载的 JSON 传递给执行此操作的库中的函数:
$("#example1").handsontable({
data:data, //<--- error here
minRows: 2,
minCols: 3,
minSpareRows: 1,
currentRowClassName: 'currentRow',
currentColClassName: 'currentCol',
autoWrapRow: true,
colHeaders: true
});
$("#example1").handsontable('selectCell', 3, 3);
萤火虫 说
ReferenceError: data is not defined
[Break On This Error]
data:data,
我以为我已经将 JSON 加载到data
变量中了?有什么建议么?