function example() {
// This variable is defined inside of this function
// So if you try to access it out of this function,
// it will throw an error and you cannot access it
const data = [];
}
example();
console.log(data); // ReferenceError: data is not defined
1条答案
按热度按时间unftdfkk1#
JS中的作用域
这是一个初学者在使用瞄准镜时遇到的问题
不工作
工程
你实际上应该做什么
函数可以返回值,这样就不会出现这样的问题。像下面所示的那样使用它。我已经展示了一个通用的例子,但是你可以在你的
mounted
处理程序和getData
函数中使用这个概念