变量的当前值可以用作Postman中另一个变量的值吗?

时间:2019-03-08 19:44:21

标签: postman

我的邮递员环境变量“ date_format”的值为:

/^\d{4}-(?:0[1-9]|1[0-2])-(?:0[1-9]|[1-2]\d|3[0-1])T([01]\d|2[0-3]):([0-5][0-9]):([0-9][0-9]).*/

我已经在“集合预请求”标签中定义了变量“ date_format”:

date_format = pm.environment.get('date_format');

我想在模式测试中使用该全局变量。我将以下架构保存在集合变量“ test_schema”中

{
    "type": "object",
    "properties": {
        "data": {
            "type": "object",
            "properties": {
                "lastUdpateDateTime": {
                    "type": "string",
                    "pattern": date_format
                    ...
                    ...

0 个答案:

没有答案