热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

get请求url当中拼接了多个参数之后含有%20特殊字符要如何转义

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



推荐阅读
author-avatar
无石笑_987
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有