发布于2021-05-30 08:01 阅读(1517) 评论(0) 点赞(18) 收藏(0)
可以先运行下 完整代码 看看结果。
这个修改哪个this?修改的是inner this,保持跟out this 指向一致,这样我们请求返回的数据就赋&给Vue实例 中的 data 对象,这样页面呈现的就是最新数据。
方法一,将回调函数形式改为箭头函数,(详解参考 箭头函数中this的指向)
SendGet:function(){
console.log("out this:",this)
axios.get('https://jsonplaceholder.typicode.com/todos?_limit=5')
.then(res=>{
console.log("inner this:",this)
// console.log(res.data);
});
},
方法二,变量传值
SendGet:function(){
console.log("out this:",this)
var _this = this;
axios.get('https://jsonplaceholder.typicode.com/todos?_limit=5')
.then(function(res){
console.log("inner this:",_this)
// console.log(res.data);
});
},
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>认识Vue</title>
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.11"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</head>
<body>
<div id="app">
{{message}}
<button @click='OnClick'>点击</button>
<button @click='SendGet'>Get请求</button>
</div>
<script>
new Vue({
el:'#app',
data:{
message: 'Hello, Vue!',
},
methods:{
OnClick:function(){
console.log('this:',this);
console.log('click');
},
SendGet:function(){
console.log("out this:",this)
axios.get('https://jsonplaceholder.typicode.com/todos?_limit=5')
.then(function(res){
console.log("inner this:",this)
// console.log(res.data);
});
},
}
});
</script>
</body>
</html>
作者:强哥你们辛苦了
链接:http://www.qianduanheidong.com/blog/article/115830/b45a58e37d8228c47411/
来源:前端黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 前端黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-3
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!