我試圖使用cordovaHTTP插件,在我POST
API調用,雖然我已經設置Content-Type
頭application/json
,但我可以看到,內容是application/x-www-form-urlencoded
格式發送和請求標頭中不存在Content-Type標頭。如何設置Content-Type頭在cordovaHTTP插件請求
用法示例:
cordovaHTTP.post("url/to/method",
{
"email": "[email protected]"
},
{
"Content-Type": "application/json"
},
function (result) {
alert('success');
},
function (error) {
alert('error');
});
服務器API我看到
:
RAW BODY
email=ali%40aliha.me
如何我可以設置Content-Type
頭?
注意:這種設置標題的方法,適用於其他標題,如Authorization
標題。
我想將apikey,userid,useragent,cookie,Connection,Accept-Encoding,Content-Type和Content-Length發送給api。我應該如何構建我的分叉庫的發佈請求?我不知道哪些發送數據在發送請求的標題部分!希望你能幫助我。謝謝 – user1788736