我如何更改变量值?我尝试使用" Promises"但它没有工作它给我一个错误,我试图在桌子上加载数据
/* Formating function for row details */
function fnFormatDetails(oTable, nTr) {
var aData = oTable.fnGetData(nTr);
var sOut ='';
$.post("http://localhost:3000/almuerzo/findIng", {
nombre: aData[1]},
function(data, status){
sOut = '<ul>';
sOut += data.nombre;
sOut += '</ul>';
});
return sOut;
}
正如我所说,当我尝试使用promises de&#34; datable.tabletools plugin&#34;失败,说&#34;显示&#34;
出现错误答案 0 :(得分:1)
你不能使用
return sOut;
在回调函数之外。
在你的例子中,总是''。