js - 获取中的过滤器
js - filters in fetch
我有问题。我正在尝试获取 API,但有一条错误消息显示:
至少要有一个过滤参数
我在 google 上找到了一些东西,但没有任何效果。
我的代码如下所示:
let api = await fetch("https://api.clashofclans.com/v1/clans/#2Q8GRY8LQ", {
method: `GET`,
headers: new Headers({
'Authorization': `Bearer ${API_TOKEN}`,
})
})
let apiJSON = await api.json()
console.log(apiJSON)
谢谢
试试这样 encodeURIComponent
氏族标签:
let api = await fetch(`https://api.clashofclans.com/v1/clans/${encodeURIComponent(#2Q8GRY8LQ)}`, {
method: `GET`,
headers: new Headers({
'Authorization': `Bearer ${API_TOKEN}`,
})
})
let apiJSON = await api.json()
console.log(apiJSON)
我有问题。我正在尝试获取 API,但有一条错误消息显示:
至少要有一个过滤参数
我在 google 上找到了一些东西,但没有任何效果。 我的代码如下所示:
let api = await fetch("https://api.clashofclans.com/v1/clans/#2Q8GRY8LQ", {
method: `GET`,
headers: new Headers({
'Authorization': `Bearer ${API_TOKEN}`,
})
})
let apiJSON = await api.json()
console.log(apiJSON)
谢谢
试试这样 encodeURIComponent
氏族标签:
let api = await fetch(`https://api.clashofclans.com/v1/clans/${encodeURIComponent(#2Q8GRY8LQ)}`, {
method: `GET`,
headers: new Headers({
'Authorization': `Bearer ${API_TOKEN}`,
})
})
let apiJSON = await api.json()
console.log(apiJSON)