1、導語javascript
我發現好像我最近幾回寫文,都是在7號,很恰巧啊~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~前端
2、正文vue
最近用vue作一個訂單管理混合開發APP,可是遇到個問題,使用了vueResource的post請求,後端作了跨域解決方案,但是前端仍是請求不出去,最後才發現,其實仍是有問題,其實踩到這個坑,根本緣由,是沒把form data和request payload的區別搞懂,因此建議你們仍是找找資料,搞搞清楚java
一、淺談 form data和request payload的區別json
get請求,是將請求參數以&方法,拼接在url後面,如:http://www.baidu.com?name=23&password=8888; segmentfault
真正能夠明顯看出區分的是在post請求上,後端
post請求時,頭文件 中Content-Type 是默認值 application/x-www-form-urlencoded,參數是放在 form date中的,以下狀況跨域
post請求時,頭文件 中Content-Type 是默認值 application/json;charset=UTF-8,參數是放在 request payload 中的。服務器
順便說下 Content-Type 的參數,你們能夠參考:http://tool.oschina.net/commonsapp
二、解決vue-resource post請求跨域問題
vue提供了一個簡單的解決方法,就是 Vue.http.options.emulateJSON = true; 其實等同於在headers中添加 'Content-Type': 'application/x-www-form-urlencoded'
不過,更穩妥的方法是如此寫:
// 在路由的請求中如此設置 Vue.http.options.emulateJSON = true Vue.http.options.xhr = { withCredentials: true } Vue.http.options.crossOrigin = true Vue.http.options.emulateHTTP = true
Vue.http.options.root = URL.Purl // URL.Purl指的是服務器路徑
爲什麼要如此寫呢?感謝 我在尋找這問題時,看到的文章:https://segmentfault.com/a/1190000007087934
效果以下:
因此你們能夠愉快的這麼運行vue-resource了
getShopCartList() { this.$http.post(URL.ShopCartList, { openId: this.openId, userName: this.userName, accessToken: this.accessToken, sign: this.sign, shopId: this.shopId }).then( function (response) { this.$store.dispatch('update_loading', false) let status = response.body.status; if (status == 1) { let result = response.body.result; if (result !== null) { this.cartGoodLis = []; result.shopCarts.forEach((shopCartsItem) => { if (shopCartsItem.cartItems.length == 1) { this.cartGoodLis.push(shopCartsItem.cartItems[0]) } else { shopCartsItem.cartItems.forEach((shopCartsItems) => { this.cartGoodLis.push(shopCartsItems) }) } }); } else { this.cartGoodLis = []; } } else { // Router.verificationToUser(status, response.body.msg); } } ) }
3、 結尾
訂單管理APP已經經過測試部的測試了,開心開心~~~~~~~~~~~~~~