ブラウザから次のコードを実行すると、サーバーから400が返され、リクエストの本文が欠落しているという苦情が寄せられます。誰も私が単純な文字列を渡し、それを要求本文として送信する方法についての手がかりを手に入れましたか?
let content = 'Hello world'
axios.put(url, content).then(response => {
resolve(response.data.content)
}, response => {
this.handleEditError(response)
})
[]でコンテンツをラップすると、スルーします。しかし、サーバーはそれを[で始まり]で終わる文字列として受け取ります。それは奇妙に思えます。
いじくり回した後、私は次の作品を発見しました
let req = {
url,
method: 'PUT',
data: content
}
axios(req).then(response => {
resolve(response.data.content)
}, response => {
this.handleEditError(response)
})
しかし、最初のものも同様に機能しませんか?
プレーンテキストの送信に問題があり、本文の値を二重引用符で囲む必要があることがわかりました。
const request = axios.put(url, "\"" + values.guid + "\"", {
headers: {
"Accept": "application/json",
"Content-type": "application/json",
"Authorization": "Bearer " + sessionStorage.getItem('jwt')
}
})
私のwebapiサーバーメソッドシグネチャはこれです:
public IActionResult UpdateModelGuid([FromRoute] string guid, [FromBody] string newGuid)
これは私のために機能します(ノードjs replから呼び出されるコード):
const axios = require("axios");
axios
.put(
"http://localhost:4000/api/token",
"mytoken",
{headers: {"Content-Type": "text/plain"}}
)
.then(r => console.log(r.status))
.catch(e => console.log(e));
ログ:200
そして、これは私のリクエストハンドラです(restifyを使用しています):
function handleToken(req, res) {
if(typeof req.body === "string" && req.body.length > 3) {
res.send(200);
} else {
res.send(400);
}
}
ここでは、Content-Typeヘッダーが重要です。
以下を試しましたか?
axios.post('/save', { firstName: 'Marlon', lastName: 'Bernardes' })
.then(function(response){
console.log('saved successfully')
});
リファレンス: http://codeheaven.io/how-to-use-axios-as-your-http-client/
デフォルトのContent-Typeをオーバーライドすることでこれを解決しました。
const config = { headers: {'Content-Type': 'application/json'} };
axios.put(url, content, config).then(response => {
...
});
Mの経験に基づいて、デフォルトのConent-Typeは、文字列ではapplication/x-www-form-urlencoded、オブジェクト(配列を含む)ではapplication/jsonです。サーバーはおそらくJSONを想定しています。
axios.put(url,{body},{headers:{}})
例:
const body = {title: "what!"}
const api = {
apikey: "safhjsdflajksdfh",
Authorization: "Basic bwejdkfhasjk"
}
axios.put('https://api.xxx.net/xx', body, {headers: api})
これは私のために働いた:
export function modalSave(name,id){
console.log('modalChanges action ' + name+id);
return {
type: 'EDIT',
payload: new Promise((resolve, reject) => {
const value = {
Name: name,
ID: id,
}
axios({
method: 'put',
url: 'http://localhost:53203/api/values',
data: value,
config: { headers: {'Content-Type': 'multipart/form-data' }}
})
.then(function (response) {
if (response.status === 200) {
console.log("Update Success");
resolve();
}
})
.catch(function (response) {
console.log(response);
resolve();
});
})
};
}
これは私のために働いた。
let content = 'Hello world';
static apicall(content) {
return axios({
url: `url`,
method: "put",
data: content
});
}
apicall()
.then((response) => {
console.log("success",response.data)
}
.error( () => console.log('error'));