我正在使用Handsontable来显示数据,但我无法加载从PHP返回的数据。
这是我的jQuery代码:
$("#handsontable").on('shown.bs.modal', function () {
var container = document.getElementById('existdata');
var hot = new Handsontable(container, {
minSpareRows: 1,
height: '380',
rowHeaders: true,
colHeaders: ['col1','col2','col3','col4','col5'],
contextMenu: false,
manualColumnResize: true,
colWidths:[100,100,100,50,450]
});
});
$(document).on('click','#btn',function(){
var as = $('input[name="assign"]:checked').val();
var data = $('#sample').attr('data-file');
$.post('script/sample.php',{action:'sample',data:data,as:as},function(chk){
$("#handsontable").modal("show");
var d = ["","","","",JSON.parse(chk)];
console.log(JSON.stringify(d))
$('#existdata').handsontable('loadData', d);
});
});
以下是PHP返回的数据:
["","","","",["TOR-038-7459_XCODE_Conforming_SCC_Proxy.wmv"]]
我使用console.log(JSON.stringify(d))
来了解我d
的样子。
答案 0 :(得分:0)
我刚刚找到问题的根源。问题是AJAX从我的PHP代码收到的数据。正确的数据应为[["","","","","TOR-038-7459_XCODE_Conforming_SCC_Proxy.wmv"]]
而不是["","","","",["TOR-038-7459_XCODE_Conforming_SCC_Proxy.wmv"]]
。