欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

postman 参数传日期格式时写法

程序员文章站 2022-07-12 12:50:27
...

postman 参数传日期格式时写法
postman 参数传日期格式时写法
模板如下:

 {"createTime":"{{createTime}}",
 "updateTime":"{{updateTime}}"}
postman.setGlobalVariable("createTime",Date.parse(new Date("2021/04/21 00:00:00")));
postman.setGlobalVariable("updateTime",Date.parse(new Date("2021/05/21 00:00:00")));