vue 的 object 自己用自己的值?

发布于 2022-09-13 00:33:12 字数 644 浏览 11 评论 0

const configCommon = {
  defaultLang: 'ch',
  productionHost: 'abc.com',
  apiHost: location.host.indexOf('abc.com') > -1 ? 'https://api.abc.com' : 'http://127.0.0.1:8200',
  deviceWidth: 500,
  ...
}

export default configCommon

有個疑問
假設我的 abc.com 重複了至少三次
可以在object中自己用自己?
我的想像畫面是...

const configCommon = {
  productionHost: 'abc.com',
  apiHost: location.host.indexOf(configCommon.productionHost) > -1 ? `https://api.${configCommon.productionHost}` : 'http://127.0.0.1:8200',
  ...
}

當然,獲得了錯誤...

Cannot access 'configCommon' before initialization

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

温柔戏命师 2022-09-20 00:33:12

我会这么处理

const baseUrl = 'abc.com'
const configCommon = {
  defaultLang: 'ch',
  productionHost: baseUrl,
  apiHost: location.host.indexOf(baseUrl) > -1 ? `https://api.${baseUrl}` : 'http://127.0.0.1:8200',
  deviceWidth: 500,
  ...
}

export default configCommon
与他有关 2022-09-20 00:33:12

没有性能要求的话,做成getter字段用this访问。

否则就先留空,下一条语句再赋值这个字段。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文