在Postman中传递URL中的全局变量

时间:2018-05-29 18:04:37

标签: javascript postman

我有一个/project/{project_id}请求{project_id}POST这里是在创建项目的其他POST请求中创建的ID。

我的要求是,在GET请求(创建项目)响应中创建ID后,该ID可以在env请求的网址中使用。

我已将全局var jsonRespStore = JSON.parse(responseBody); postman.setGlobalVariable("id", jsonRespStore.id); 变量设置为

<div>
<mat-grid-list cols="6" rowHeight="250px">
    <mat-grid-tile *ngFor="let card of card" [colspan]="card.cols" [rowspan]="card.rows">
      <mat-card class="dashboard-card">
        <mat-card-header>
        </mat-card-header>
        <div>
        <mat-card-content class="dashboard-card-content">
           <img src={{card.IMGPath}}>
          <a mat-raised-button color="primary" href={{card.ButtonLink}}>{{card.ButtonLabel}}</a>
        </mat-card-content>
      </div>
      </mat-card>
    </mat-grid-tile>
  </mat-grid-list>
</div>

但是如何在URL中使用这个变量?

请帮忙

1 个答案:

答案 0 :(得分:1)

您可以通过使用双卷曲括号转义请求中的变量。

https://www.myhost.com/project/{{id}}