How to pass data among the screens in sencha touch2.0?

前端 未结 1 1009
轮回少年
轮回少年 2021-01-15 18:23

I am working on sencha touch2.0 app and I want to send data from one screen to another. I know this question has already been asked here but I don\'t find it helpful so I am

相关标签:
1条回答
  • 2021-01-15 18:45

    Ext.dispatch() is deprecated in Sencha Touch 2.0 because of the fact that you can always call any method of any controller at anytime you want through this, right in your views:

    yourAppName.getApplication().getController.method(params)

    Or even further, you can make it automatic through refs and controls in your controller.

    0 讨论(0)
提交回复
热议问题