一、npm install axios 後 在main.js中importios
import Axios from 'axios'
Vue.prototype.$http = Axios
二、請求配置npm
this.$http.get(
{
'url':'http://sss.com/getSysTime.do',
'crossDomain': true, //跨域的配置項
'params': {
firstName: 'Fred',
lastName: 'Flintstone'
}
}
).then(function(response) {
console.log(response)
});
大哥,能用的話記得點推薦!