最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - @Input angular 2 pass number or object variables - Stack Overflow

programmeradmin2浏览0评论

It is possible to send number or a whole class instance to @Input ? I am trying to send the value like this value="id" or this [value]="id". for example id = 1.But in console i see that my object received string value id and not the value of id, those = 1. In console i see this:

 id :  id
    typeof:  string

UPDATED

My class that store value:

private id: number ;

  show(id: number): void { 
    this.id = id;
  }

In html page of my ponent i assign to selector of my childComponent value like this value="id" or this [value]="id".

And my child class is very simple:

 @Input() value: number;
  constructor() { 
  }
   
   ngOnChanges() {
     console.log(`ngOnChanges: `, this.value);
   }

It is possible to send number or a whole class instance to @Input ? I am trying to send the value like this value="id" or this [value]="id". for example id = 1.But in console i see that my object received string value id and not the value of id, those = 1. In console i see this:

 id :  id
    typeof:  string

UPDATED

My class that store value:

private id: number ;

  show(id: number): void { 
    this.id = id;
  }

In html page of my ponent i assign to selector of my childComponent value like this value="id" or this [value]="id".

And my child class is very simple:

 @Input() value: number;
  constructor() { 
  }
   
   ngOnChanges() {
     console.log(`ngOnChanges: `, this.value);
   }
Share Improve this question edited Sep 6, 2017 at 16:54 iliya.rudberg asked Sep 6, 2017 at 16:47 iliya.rudbergiliya.rudberg 78912 silver badges24 bronze badges 3
  • 2 can you post your tries, it can help us to understand the problem more clearly – Rajez Commented Sep 6, 2017 at 16:51
  • 1 The simple answer to your question is "yes". But to help you with syntax, we'll need to see your code. – DeborahK Commented Sep 6, 2017 at 16:52
  • 1 If you pass value="id" here id is a string a variable but if you pass value = id may be depend of your context, simple description, simple answer. Regards – user8556290 Commented Sep 6, 2017 at 16:54
Add a ment  | 

1 Answer 1

Reset to default 10

It is possible to send number or a whole class instance to @Input ?

Yes, it is possible.

Notes:

  1. For Number and boolean variables you can pass them around as [value]="12" and [value]="true".
  2. For passing strings, you need to enclose the string within single quotes to pass them as it is. [value]="'Justastring'".
  3. For object or variables defined in the ponent, you can simply pass them.

For @Input() bound attributes, the mon way is [value]="id".

Angular will now simply look for variable named id in the ponent's class and assign the value to the value variable in the child ponent.

发布评论

评论列表(0)

  1. 暂无评论