gpt4 book ai didi

vue.js - 通过字符串值获取 Vuejs Store 变量

转载 作者:行者123 更新时间:2023-12-01 21:49:00 25 4
gpt4 key购买 nike

我正在尝试获取这样的 vuejs 存储变量:

const pathFile = `#pathFile_${this.devisDTO.code_produit}`;
const pathApp = this.$store.state.parameters.urls.${pathFile};

所以在第二行中,${pathFile} 不以这种方式解释。请问你能帮忙写这个吗?

最佳答案

在 JavaScript 中,${string_name} 在模板字符串 (1) 中使用。如果你想根据字符串的内容访问字典的值,你应该使用方括号语法。在你的情况下

this.$store.state.url[path_file]

附带说明一下,我建议您使用存储 getter 来访问变量。

(1):https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals

关于vue.js - 通过字符串值获取 Vuejs Store 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59786212/

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