Heim > Fragen und Antworten > Hauptteil
In der Umgebung, die mit vue+webpack+vue-resource in vue 2.0 erstellt wurde, wenn this.$http.post() lokal ausgeführt wird... wird ein Fehler gemeldet?
巴扎黑2017-07-03 11:43:26
跨域了,大兄弟。
解决办法一:需要后端工程师配合设置 Access-Control-Allow-Origin 为 *
一定要设置 {emulateJSON: true},不然跨域不成功.
如果Web服务器无法处理编码为application/json的请求,你可以启用emulateJSON选项。启用该选项后,请求会以application/x-www-form-urlencoded作为MIME type,就像普通的HTML表单一样
解决办法二: this.$http.jsonp('...', { credentials: true }) 使用JSONP