javascript - weex POST請(qǐng)求web端body服務(wù)器獲取不到參數(shù)
問題描述
POST請(qǐng)求服務(wù)器取不到參數(shù),發(fā)現(xiàn)Stream.fetch采用的是直接將body變成字符串專遞給服務(wù)器,而我們的服務(wù)器需要的像Jquery那個(gè)樣的Ajax請(qǐng)求(&key=value)的形式,在charles攔截的到參數(shù)在request中為key值,而jquery中得到的是keyValue樣式,請(qǐng)問在哪個(gè)文件里面修改提交body的方式?
stream.fetch({
method: ’POST’, url: POST_URL, type:’json’,
//headers: {’Content-Type’: ’application/json; charset=utf-8’,},
body: JSON.stringify({ data: bodyString})//or you can just use JSON Object {username:’weex’} }, function(ret) { if(!ret.ok){ me.postResult = 'request failed'; }else{ console.log(’get:’+JSON.stringify(ret)); me.postResult = JSON.stringify(ret.data); } },function(response){ console.log(’get in progress:’+response.length); me.postResult = 'bytes received:'+response.length; });
問題解答
回答1:在請(qǐng)求頭中加入 'Content-Type': ’application/x-www-form-urlencoded;即可
回答2:stream.fetch({
method: ’POST’, url: POST_URL, type:’json’, body:JSON.stringify({username:’weex’})//or you can just use JSON Object {username:’weex’} }, function(ret) { if(!ret.ok){ me.postResult = 'request failed'; }else{ console.log(’get:’+JSON.stringify(ret)); me.postResult = JSON.stringify(ret.data); } },function(response){ console.log(’get in progress:’+response.length); me.postResult = 'bytes received:'+response.length; });
相關(guān)文章:
1. macos - 無法source activate python272. javascript - 微信網(wǎng)頁開發(fā)從菜單進(jìn)入頁面后,按返回鍵沒有關(guān)閉瀏覽器而是刷新當(dāng)前頁面,求解決?3. 預(yù)訂金和尾款分別支付4. javascript - h5微信中怎么禁止橫屏5. empty比isset更嚴(yán)格一點(diǎn)6. 運(yùn)行python程序時(shí)出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯(cuò)誤?7. 我在導(dǎo)入模板資源時(shí)遇到無法顯示的問題,請(qǐng)老師解答下8. PHPExcel表格導(dǎo)入數(shù)據(jù)庫怎么導(dǎo)入9. thinkphp6使用驗(yàn)證器 信息如何輸出到前端頁面10. python - sqlalchemy更新數(shù)據(jù)報(bào)錯(cuò)

網(wǎng)公網(wǎng)安備