需要跳转到后台的Controller如下
@RequestMapping(value="/asd.json",produces="application/json;charset=utf-8")
@ResponseBody
public String bootstartTable() {
而前端的url该怎么写,我写成url:"/asd.json",是条转不过去的
$(function () {
$('#table').bootstrapTable({
method: "get",
striped: true,//是否显示行间隔色
singleSelect: false,
url:"/asd.json",
dataType: "json",
pagination: true, //启动分页
pageSize: 10,//每页的记录行数()
pageNumber: 1,//初始化加载第一页,默认第一页
search: false, //显示搜索框
contentType: "application/x-www-form-urlencoded",
queryParams: null,//传递参数()
columns: [
url这一行应该是写后台的接口路径,该接口返回bootstrap table需要的json数据格式