欢迎大家来到IT世界,在知识的湖畔探索吧!
在Springboot项目的application.properites中配置了server.servlet.context-path=/demo,有时候会报错404,分析原因是访问路径问题。
首先定义函数
function getContextPath() {
var pathName = document.location.pathname;
var index = pathName.substr(1).indexOf("/");
var result = pathName.substr(0,index+1);
return result;
}
欢迎大家来到IT世界,在知识的湖畔探索吧!
在引用的时候,路径前加上getContextPath(),例如:
欢迎大家来到IT世界,在知识的湖畔探索吧!table.render({
elem: '#table-emp'
,url: getContextPath()+'/emp/listemp' //数据接口,注意路径问题
,page: true
,toolbar: "#table-emp-toolbar"
, limits:[10,20,50,100,200,500,1000]
,limit: 10 //每页默认显示的数量
, cols: [[ //表头
{type: "checkbox", width: 60}
, {field: 'id', title: '员工编号', align: 'center'}
, {field: 'xm', title: '姓名', align: 'center'}
, {field: 'lxdh', title: '联系电话', align: 'center'}
, {field: 'csrq', title: '生日',align: 'center'}
, {title: '操作', width: 165, align: 'center', toolbar: '#col-emp-toolbar'}
]]
});
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://itzsg.com/37235.html