gpt4 book ai didi

javascript - Ext JS - 如何从 ViewModel 中获取应用程序的名称?

转载 作者:行者123 更新时间:2023-11-30 08:36:05 25 4
gpt4 key购买 nike

我的 Dr. Evil 应用程序将 name 定义为 DrEvil:

Ext.define('DrEvil.Application', {
extend: 'Ext.app.Application',

name: 'DrEvil',

stores: [
// TODO: add global / shared stores here
],

launch: function () {
// TODO - Launch the application
}
});

在我的 View 模型中,有没有办法检索这个名字?我希望像 Ext.app.name 这样的东西能把它拉起来,但它是空的。我一直在遍历 ExtExt.app 等属性,但似乎找不到它。

这可能是一件微不足道的事情,它正对着我,但我在谷歌上搜索了 N 个 ExtJS get name of application within view model 的变体,但没有任何相关的结果。

我正试图说服公司为 ExtJS 购买 Eclipse 插件!可能会在一秒钟内回答这个问题。

最佳答案

如果您假设不了解该应用程序,它实际上一点也不明显。

这是通用代码,可以执行您想要的操作:

var name = Ext.app.Application.instance.getName();

或者在最新版本的 ExtJS 中:

var name = Ext.getApplication().getName();

关于javascript - Ext JS - 如何从 ViewModel 中获取应用程序的名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31347128/

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