gpt4 book ai didi

ember.js - 如何在 ember JS 应用程序中设置全局变量

转载 作者:行者123 更新时间:2023-12-05 00:55:51 26 4
gpt4 key购买 nike

在 Ember 应用程序启动之前,我想根据 URL 动态设置一个变量:

// Dummy example
if (window.location.hostname == 'awesomewebsite.com') {
// Set a "global variable" called town
}

我希望有可能依靠该变量在之后做一些事情(在组件、模板等中)。

什么是最好的方法呢?

最佳答案

您可以使用初始化程序向窗口或 ember 环境对象添加变量。

https://guides.emberjs.com/v2.5.0/applications/initializers/

窗口对象的初始化程序:

export function initialize() {
if (window.location.hostname == 'awesomewebsite.com') {
// Set a "global variable" called town
window.myApp.town= 'foo.bar';
}
};

export default {
name: 'init-environment',
initialize: initialize
};

ember 环境对象的初始化程序:
( https://guides.emberjs.com/v2.5.0/configuring-ember/configuring-your-app/ )
import ENV from 'your-application-name/config/environment';

export function initialize() {
if (window.location.hostname == 'awesomewebsite.com') {
// Set a "global variable" called town
ENV.App.town = 'foo.bar';
}
};

export default {
name: 'init-environment',
initialize: initialize
};

关于ember.js - 如何在 ember JS 应用程序中设置全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37444409/

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