vue中的普通函数与箭头函数以及this关键字
2022/7/10 6:20:03
本文主要是介绍vue中的普通函数与箭头函数以及this关键字,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
普通函数
普通函数指的是用function定义的函数
var hello = function () { console.log("Hello, Fundebug!"); }
箭头函数
箭头函数指的是用=>定义的函数
var hello = () => { console.log("Hello, Fundebug!"); }
箭头函数没有自己的this值,箭头函数中所使用的this来自于函数作用域链。
this
this就是代码执行时当前的context object。
The JavaScript context object in which the current code is executing.
Global context
代码没有在任何函数中执行,而是在全局作用域中执行时,this的值就是global对象,对于浏览器来说,this就是window。
In the global execution context (outside of any function), this refers to the global object whether in strict mode or not.
Function context
函数中的this值取决于这个函数是怎样被调用的
Inside a function, the value of this depends on how the function is called.
axios中this的指向问题
在vue中使用axios做网络请求的时候,会遇到this不指向vue,而为undefined。
解决办法:使用箭头函数 "=>"
"=>" 内部的this是词法作用域,由上下文确定(也就是由外层调用者vue来确定)。
methods: { loginAction(formName) { this.$axios.post("……") .then(function(response){ console.log(this); //这里 this = undefined }) .catch((error)=> { console.log(this); //箭头函数"=>"使this指向vue }); }); } }
这篇关于vue中的普通函数与箭头函数以及this关键字的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-26React入门教程:从零开始搭建你的第一个React应用
- 2024-12-25Vue2入门教程:轻松掌握前端开发基础
- 2024-12-25Vue3入门指南:快速搭建你的第一个Vue3项目
- 2024-12-25JS基础知识入门教程
- 2024-12-25React基础知识详解:从入门到初级应用
- 2024-12-25Vue3基础知识详解与实战指南
- 2024-12-25Vue3学习:从入门到初步掌握
- 2024-12-25Vue3入门:新手必读的简单教程
- 2024-12-23【JS逆向百例】爱疯官网登录逆向分析
- 2024-12-21Vue3教程:新手入门到实践应用