What is static get parameters() purpose in Ionic 2

2019-01-24 18:22发布

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?

1条回答
forever°为你锁心
2楼-- · 2019-01-24 18:54

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 and NavParams

Now in constructor you will have these as

 constructor(nav, navParams) {....}

From this page

What the heck is that static get parameters()?

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.

查看更多
登录 后发表回答