gpt4 book ai didi

javascript - 如何访问在类的方法中声明的变量?

转载 作者:行者123 更新时间:2023-11-30 19:14:38 26 4
gpt4 key购买 nike

我想从另一个类访问一个类的方法内声明的变量。我的代码如下:

class Profile {
getData() {
let data = [1, 2, 3, 4];
}
}

现在我想从这个类访问它:

class UI {
listProfiles() {
let gp = new Profile();
let arr = gp.getData.data;
}
}

我尝试了上面的语句,但无法访问该数据变量。预先感谢您回答我的问题。

最佳答案

您可以从 Profile 导出类,然后将其导入 UI.js。您还需要从 getData 返回。除了将 gp.getData.data; 替换为 gp.getData()

export default class Profile {
getData() {
let data = [1, 2, 3, 4];
return data;
}
}

import Profile from './profile.js';
export default class UI {
listProfiles() {
let arr = new Profile();
return arr.getData()
}
}

工作 stackblitz example

关于javascript - 如何访问在类的方法中声明的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58146106/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com