Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is static get parameters() purpose in Ionic 2?

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?

like image 332
Федор Усаков Avatar asked Jan 07 '23 12:01

Федор Усаков


1 Answers

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.

like image 78
A.B Avatar answered Jan 09 '23 01:01

A.B