在Nifty中将响应数据加载到FooTable

时间:2017-02-22 16:55:45

标签: javascript json ajax

你们有些人可以帮我这个: 我无法加载从Ajax调用收到的响应。所有数据字段都与我模型的响应属性相同。

这里有一些代码:

        url: '/Controller/Action/', 
        type: 'post',  
        data: data,
        success: function (response) { 

            debugger;

            $('.table-recentDecisions').bootstrapTable('load', response.Result.MostRecentDecisions);
            $('.table-recentDecisions').bootstrapTable();

            generateCharts(response)
        }
    });

我知道bootstrapTable必须替换为其他内容,但仍无法找到方法。

谢谢!

0 个答案:

没有答案