作者:无石笑_987 | 来源:互联网 | 2023-10-10 04:30
12345678 new AjaxRequest({ type: "get", url:'/api/ship/list.json?terminalId=' + id +' ?sta
1 2 3 4 5 6 7 8
| new AjaxRequest({
type: "get",
url:'/api/ship/list.json?terminalId=' + id +' ?startTime='+sTime+'endTime='+ eTime,
callBack: function (res) {
console.log(res);
}
}); |
最终的请求地址是
1
| Record/list.json?terminalId=25a4361daea04d5bae0fd0facea24b65%20?startTime=2019-06-25%2000:00:00endTime=2019-06-25%2023:59:59 |
2019-06-25%2023:59:59 这个空格是 时间格式化来的 无法去掉 在url里面多出来的%20 怎么去掉
理想格式
1
| Record/list.json?terminalId=25a4361daea04d5bae0fd0facea24b65?startTime=2019-06-25 00:00:00?endTime=2019-06-25 23:59:59 |