postman入參使用自增編號,當前時間

娜乌西卡在路上發表於2024-07-08

一、postman 工具請求->Scripts->pre-requests,填寫程式碼

1)自增編號

//先設定一個初始值為環境變數,每次都取最新的

var count = pm.environment.get("count");
num_new = Number(count)+Number(1);
pm.environment.set("count",num_new);
2)獲取當前的時分
// 獲取小時和分鐘
var hours = currentDate.getHours();
var minutes = currentDate.getMinutes();
// 將小時和分鐘格式化為兩位數字
hours = hours < 10 ? '0' + hours : hours;
minutes = minutes < 10 ? '0' + minutes : minutes;
end_minutes =minutes+4

pm.environment.set("begin_time", hours + ':' + minutes);
pm.environment.set("end_time", hours + ':' + end_minutes);
二)請求的入參中直接使用{{}}
三)檢視請求的引數是否正確
  1、檢視請求引數:view->show postman console 或 直接 點選“底部Console”按鈕
  2,檢視介面請求日誌:右上角“show law log”日誌將以源格式展示,再次點選“show pretty log”切回原來的樣式。
    如果內容過長顯示“The console only shows bodies smaller than 10 KB inline. To view the complete body, inspect it by clicking”,在“Response Body”點選圖示,可單獨展示過長的內容。
  3,指令碼日誌列印
    console.log(“這個是log級別的日誌”)
    console.info("這是info級別的日誌")
    console.warn("這是warning級別的日誌")
    console.error("這是error級別的日誌")
    console.debug("這個是debug日誌不在控制檯輸出")

相關文章