我正在使用Tabletop jQuery插件将Google Spreadsheet数据转换为JSON,并将所有JSON数据输出到变量。 问题是,Bootgrid只接受网址。
在源代码中它表示“或使用'function()'”,但是我尝试加载函数和变量但没有成功。
甚至可以从此插件中的变量加载数据吗?
答案 0 :(得分:0)
有两种方法可以向Bootgrid请求添加其他数据:
1)通过网址添加其他数据
$("#table").bootgrid({
/* static URL */
url: "/static/url"
});
- 或
$("#table").bootgrid({
/* dynamic URL */
url: function()
{
return "/dynamic/url/" + id;
}
});
2)向POST正文添加其他数据
$("#table").bootgrid({
/* static POST (be aware of the reserved properties (e.g. sort)) */
post: {
customId: 1
}
});
- 或
$("#table").bootgrid({
/* dynamic POST (be aware of the reserved properties (e.g. sort)) */
post: function()
{
return {
customId: id
};
}
});