gpt4 book ai didi

javascript - 如何替换 URL NodeJS 中的路径参数

转载 作者:行者123 更新时间:2023-12-04 10:14:36 25 4
gpt4 key购买 nike

问题陈述:在基于 NodeJS(Javascript) 的 API 自动化框架中调用 API 之前替换 URL 中的路径参数。

给定的 URL: https://api.spotify.com/v1/albums/{id}

{id}需要替换成值Sunshine

预期网址: https://api.spotify.com/v1/albums/Sunshine

我在 StackOverflow 中看到了某些问题。但是它们更多的是替换query_params值而不是替换path_params

我正在尝试使用这种方法,但这段代码不起作用。

var href = new URL('https://api.spotify.com/v1/albums/{id}');
href.searchParams.set('{id}', 'Sunshine');
console.log(href.toString());

任何让我知道如何做到这一点的帮助都会有很大帮助。

最佳答案

这不能通过 URL API 完成,您必须改为进行字符串替换:

var href = 'https://api.spotify.com/v1/albums/{id}'.replace('{id}', 'Sunshine');
console.log(href);

关于javascript - 如何替换 URL NodeJS 中的路径参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61141184/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com