Bootstrap表格插件Bootstrap Table配置教程

Bootstrap Table 发送Header的Content Type设置

http 协议Header里的Content-Type有以下三种方式:
1,application/x-www-form-urlencoded:数据编码为名称/值对,这是标准的编码格式。
2,multipart/form-data: 数据被编码为一条消息,每个控件对应消息中的一个部分。
3,text/plain: 数据以纯文本形式进行编码。
Bootstrap Table通过contentType属性设置,发送数据编码方式。

<table
  id="table"
  data-toggle="table"
  data-height="460"
  data-content-type="application/x-www-form-urlencoded"
  data-url="json/data1.json">
  <thead>
    <tr>
      <th data-field="id">ID</th>
      <th data-field="name">Item Name</th>
      <th data-field="price">Item Price</th>
    </tr>
  </thead></table>

另外一种设置方式

    //bootstrap table初始化数据
        $('#table').bootstrapTable({
            columns: columns,
            data: getData(),
            contentType :"application/x-www-form-urlencoded",
            height:400  //这里就是固定表头的设置
        });


Catalog
快速入门 bootstrap table方法 bootstrap table事件 bootstrap table下载 基础配置 row Attributes设置行属性 custom Sort自定义排序 table Cache缓存数据 content Type设置 response Handler total/Data Field JSON格式 escape显示html标签 idField和selectItemName cardView卡片视图模式 detailView详情视图模式 icons图标相关设置 本地化中文设置 列相关设置 columns基础设置 sortable列排序 column选择操作列 column列属性列表 分页设置 bootstrap table服务端分页 table Method 方式设置 data Type数据格式 custom AJAX 自定义ajax bootstrap table前端分页 bootstrap table查询搜索 smartDisplay作用 分页时保持选择状态 工具栏相关 showHeader显示头部 showFooter显示底部 showColumns开启列刷选 showPaginationSwitch分页 showRefresh刷选按钮 showFullscreen toolbar工具栏设置 样式设置 固定表头并美化表头 设置表格样式隔行变色 rowStyle设置行样式 theadClasses设置表头样式 footerStyle底部样式