ExtJS 6 Usage of Ext.data.Model.toUrl() method

Viewed 65

In my application, I use Ext.app.BaseController.redirectTo() and route change events to switch between UIs. A number of interfaces at each opening should be associated with a specific set of data.

I've noticed Ext.data.Model.toUrl() method (used internally by controller's .redirectTo() method), but I do not see associated method for getting model back by URL. Of course, it's trivial to handle the URL manually and find the corresponding model, but I want to know if there is a standard mechanism for this "out of the box"?

1 Answers
Related