0


Postman中POST请求传递date类型参数

1.Pre-request Script下配置时间格式:

postman.setGlobalVariable("maxBehotTime",Date.parse(newDate("2021/06/12 00:00:10")));
postman.setGlobalVariable("minBehotTime",Date.parse(newDate("2020/06/12 23:59:10")));

在这里插入图片描述

2.body — json参数设置,在这里引用上边定义的时间格式:

{"maxBehotTime":{{maxBehotTime}},"minBehotTime":{{minBehotTime}},"size":8,"tag":""}

在这里插入图片描述


本文转载自: https://blog.csdn.net/dadugaga/article/details/131562521
版权归原作者 糊涂毛毛 所有, 如有侵权,请联系我们删除。

“Postman中POST请求传递date类型参数”的评论:

还没有评论