重新启动 Sencha Touch 应用程序
我目前正在使用 Sencha Touch 本地化应用程序,所有字符串值(例如标题、标签和表单)都是在启动时生成的,这意味着如果我想切换语言,我需要重新加载整个应用程序。
有没有办法可以在不刷新浏览器的情况下重新启动/重新加载整个应用程序或视图?
I'm currently working with a Sencha Touch localized app, and all of the string values such as titles, labels and forms are generated on launch, meaning that if I want to switch the language I need to reload the whole app.
Is there a way I can restart/reload the whole application or views without refreshing the browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用本机 JavaScript 代码重新加载会话
IE
Try using the native JavaScript code for reloading the session
i-e
您始终可以在
Ext.Application
类中触发launch 事件
,这将调用所有应用初始化代码,而无需刷新浏览器You can always fire a
launch event
in theExt.Application
class, this will invoke all the app initialization code without refreshing the browser