vue-resource 的get和post学习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-resource 的get和post学习相关的知识,希望对你有一定的参考价值。

vue-resource 的get和post学习
<
template> <div class="winter"> <button @click="getUser">点我1</button> <button @click="postWq">点我2</button> <div v-for="item in msg"> <p>{{item.id}}</p> <p>{{item.name}}</p> <p>{{item.age}}</p> </div> <p>{{msg2.id}}</p> <p>{{msg2.name}}</p> <p>{{msg2.age}}</p> </div> </template> <script> export default{ name:winter, data() { return{ msg:‘‘, msg2:‘‘ } }, methods:{ getUser(){ this.$http.get("http://localhost:5000/api/values").then((res)=>{ console.log(this.msg=res.body)//请求成功打印数据(数据后台给的) }) .catch((res)=>{alert(1)})//请求失败弹出1 }, postWq () { let ws = {id: 1, name: 你好, age: 20} this.$http.post(http://localhost:5000/api/values, ws).then(a => { console.log(this.msg2 = a.data)//请求成功打印数据1 你好 20 }).catch((e) => { alert(1)//请求失败弹出1 }) } } } </script>

 

以上是关于vue-resource 的get和post学习的主要内容,如果未能解决你的问题,请参考以下文章

vue-resource.js的get和post的正确用法

vue-resource发起get,post,jsonp请求

vue-resource发起get,post,jsonp请求

vue-resource 实现 get, post, jsonp请求

vue-resource 中 get / post / jsonp 三种请求方式的异同

vue-resource