如何在Bootstrap表中插入和更新数据?

时间:2015-07-08 09:29:32

标签: javascript twitter-bootstrap-3

我还没找到如何在bootstrap表中插入和更新数据的确切答案。

数据来自JSON格式的网址。

我必须在同一个表中使用多个网址。

2 个答案:

答案 0 :(得分:5)

Caused by: java.lang.RuntimeException: Test exception!!!
       at coda.RootActivity.onCreate(SourceFile:189)     <====
       at android.app.Activity.performCreate(Activity.java:5990)
       at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106)
       at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2278)

如果数据来自API作为JSON,您需要先从API端点下载JSON并将其存储在javascript变量中并加载

Demo on JSFiddle

答案 1 :(得分:0)

假设json数据保存在名为myList的javascript数组中,索引为0&amp;你插入到myTable中,使用bootstrap表的'insertRow'选项作为表格末尾的最后一行插入,如下所示:

var rowId = $("#myTable >tbody >tr").length;
$(myTable).bootstrapTable('insertRow',{
            index: rowId,
            row: myList[0]
         });