如何将此 curl 请求转换为 javascript 中的 ajax 调用?(原始 js 或任何库中的答案都可以)
卷曲:
curl -H "Content-Type: application/json" -d '{"foo":0, "bar": 0, "baz":"test"}' -X GET http://localhost:8080/public/v1/state/HelloWorld
我在 ajax 调用中尝试的 URL(它给出了 404 错误):
GET http://192.168.56.101:8080/public/v1/state/HelloWorld?foo=0&bar=0&baz=test
代码
return axios.get(switchDomain + '/public/v1/state/HelloWorld', {
params: {
foo: 0,
bar: 0,
baz: "BER",
}
})
.then(function(response){
console.log('perf response', response);
});