溫馨提示×

postman如何引用當(dāng)前日期

小億
537
2024-02-27 12:35:53
欄目: 編程語言

在Postman中,您可以使用JavaScript代碼來獲取當(dāng)前日期。以下是一種方法:

  1. 在Postman中創(chuàng)建一個新的請求。

  2. 在請求的"Pre-request Script"部分中,輸入以下代碼:

let currentDate = new Date().toJSON().slice(0,10);
pm.variables.set("currentDate", currentDate);
  1. 在請求中的URL或Headers中使用{{currentDate}}來引用當(dāng)前日期。

例如,您可以在URL中這樣使用:

https://api.example.com/data?date={{currentDate}}

這樣,每次發(fā)送請求時,{{currentDate}}將會被替換為當(dāng)前日期。

0