本文介绍了如何在 Postman 的当前时间戳中添加更多时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道我可以像这样将当前时间戳添加到请求中:
I know I am able to add current timestamp into Request like this:
postman.setEnvironmentVariable('pickUpTime',(new Date()).toISOString());
但是,我想在 Postman 的当前时间戳上增加 10 分钟.我该怎么做?
However, I want to add 10min later to the current timestamp of Postman. How can I do that?
似乎我不能这样做:
postman.setEnvironmentVariable('pickUpTime',(new Date() + 10000).toISOString());
推荐答案
可以使用,它使这类事情变得如此简单和易于管理.
You can use the add
function of moment.js within Postman, it makes this type of thing so simple and easy to manage.
var moment = require("moment")
pm.environment.set('pickUpTime', moment().add(10, 'minutes').toISOString())
这将使用较新的语法将此值设置为环境变量.
This will set this value to an environment variable, using the the newer syntax.
这篇关于如何在 Postman 的当前时间戳中添加更多时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!