已导入vue-resourse,前端依旧报错!
导入方式如下:import 'vue-resource'
组件使用post:
<script>
export default{
data () {
return {
formSendCodeField:{
phone: '',
code: ''
}
}
},
methods: {
sendCode () {
this.$http.post('/api/phone/code', {phone: this.phone})
.then(function (response) {
console.log(response);
}, function(error){
console.log(error)
})
}
}
}
</script>
报错信息为:cannot read property "post" of ubdefined
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你用的是webpack吗? webpack的话是这样用