如果是post的方法是不是在helper.js新增一个post的方法
helper.js:
export function post(url) {
return function (params) {
return axios.post(url, {
params
}).then((res) => {
const {errno, data} = res.data
if(errno === ERR_OK) {
return data
}
}).catch(() => {
})
}
}
index.js
import { get, post } from ‘./helper’
const getSeller = get(’/api/seller’)
const getGoods = get(’/api/goods’)
const getSdata = post(‘http://houseapi.ugb168.com/app/common/rental_type.html’)
export {
getSeller,
getGoods,
getSdata
}
App.vue
_getSdata() {
getSdata({
office_id: 5,
builtuparea: 1
}).then((data) => {
console.log(data)
})
}
这么写有报错 500 ,没有吧数据读出来。。
掌握Vue1.0到2.0再到2.5最全版本应用与迭代,打造极致流畅的WebApp
了解课程