I found out that there is a new construction in latest Ionic 2 Beta.
It looks like that:
export class ListPage {
static get parameters() {
return [[NavController], [NavParams]];
}
...
Could anyone please explain me or give a link to some kind of tutorial or detailed explanation of the purpose of this method? And how it is connected with Page constructor, injection and modules?
With static getter for parameters you specify injections for your component's constructor
It provide Angular with metadata about things it should inject in the constructor
Here it provides netadata about
NavController
andNavParams
Now in constructor you will have these as
From this page
Angular2 is written in TypeScript, and normally depends on types to know what kind of objects to inject into class constructors as part of its dependency injection framework. Since these examples are in JavaScript and not TypeScript, we need a way to tell Angular what “types” of objects should be injected, without actually using types. The way we do this is with the static getter parameters which attaches this type information to the class.