postman中各種變數

一江春水向东刘小姐發表於2024-05-28

新建專案集合

1、集合變數(專案變數,只適用於當前專案

獲取、設定集合變數

pm.collectionVariables.get("variable_key");
pm.collectionVariables.set("variable_key", "variable_value");

2、環境變數(適用於某個環境,一個環境可以適用於多個專案集合

獲取、設定環境變數

pm.environment.get("variable_key");
pm.environment.set("variable_key", "variable_value");

3、全域性變數(適用於所有專案集合,大家都可以使用,作用於整個postman

獲取、設定全域性變數

pm.globals.get("variable_key");
pm.globals.set("variable_key", "variable_value");

4、普通變數(在當前請求中獲取引數)

獲取、設定普通變數

pm.variables.get("variable_key");
pm.variables.set("variable_key", "variable_value");

5、動態變數,在pre-request script中設定

{{$guid}} 新增v4風格的guid
{{$timestamp}} 新增當前時間戳
{{$randomInt}} 新增0到1000之間的隨機整數

相關文章