gpt4 book ai didi

date - 如何在 Postman 中将 {{$timestamp}} 格式化为 MM/DD/YYYY?

转载 作者:行者123 更新时间:2023-12-01 14:01:19 25 4
gpt4 key购买 nike

在 postman 中,dynamic variable {{$timestamp}}插入当前 Unix Time Stamp成一个请求。 (表示为自 1970 年 1 月 1 日以来的秒数)

"currentTime": "1510934784"

但是,我正在使用的 API 期望时间戳格式为 MM/DD/YYYY .
"currentDate": "11/17/2017"

如何在 Postman 的请求中插入当前日期(格式为 MM/DD/YYYY)?

最佳答案

您可以使用 moment.js与 postman 一起为您提供时间戳格式。
您可以将其添加到预请求脚本中:

const moment = require('moment');
pm.globals.set("today", moment().format("MM/DD/YYYY"));
然后引用 {{today}}无论您在哪里需要它。
如果您将此添加到 Collection Level Pre-request Script ,它将为 Collection 中的每个请求运行.而不是需要将其单独添加到所有请求中。
有关使用 moment 的更多信息在 Postman 中,我写了一篇简短的博文: https://dannydainton.com/2018/05/21/hold-on-wait-a-moment/

关于date - 如何在 Postman 中将 {{$timestamp}} 格式化为 MM/DD/YYYY?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47355150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com