我在第一个请求中得到了这个响应正文:
@Component({
selector: 'feature-root',
templateUrl: './feature.component.html',
styleUrls: ['./feature.component.scss'],
providers: [Feature_Service],
})
export class Feature_Root_Component implements OnInit, OnDestroy {
constructor(private feature_service: Feature_Service) {}
}
我需要在下一个请求端点中使用上述“ resource-id”的值(每隔几分钟更改一次,并且不是常数):{{url}} / abcd-22-sxww / END-POINT < / p>
有什么建议吗?
答案 0 :(得分:0)
pm.environment.set("resource-id", resourceid);
然后,在另一个:
const resourceid = pm.environment.get("resource-id");
或使用端点URL中的密钥:
{{resourceId}}
注意:已更新以反映评论的反馈。