我想使用Inputs制作一个Angular2组件链.一个简单的示例链,从应用程序>父级>子级。其中 在应用中设置数据 哪个实习生在运行时在子级中设置。下面的代码相同。
------------ app.component.ts ---------
import {Component} from 'angular2/core';
import {ParentComponent} from './parent.component';
@Component({
selector:'componentchain-tag',
template: `<h1>Level 0</h1>
<p><parent-tag [fromapp] = "From Level 0" ></parent-tag>
`,
directives: [ParentComponent]
})
export class AppComponent {
fromapp: string;
}
------------- parent.component.ts ----------------
import {Component,Input} from 'angular2/core';
import {Child1Component} from './child1.component';
@Component({
selector:'parent-tag',
template: `<h1>Level 1</h1>
<p><child1-tag [child1value] = {{fromapp}} ></child1-tag>
`,
directives: [Child1Component]
})
export class ParentComponent {
@Input() fromapp: string;
child1value: string;
constructor(){
}
}
---------------------------子项1.组件.ts---------
import {Component,Input} from 'angular2/core';
@Component({
selector: 'child1-tag',
template: `<h1>Level 3-1</h1>
This is Child1
<p>This is variable from {{child1value}}
`
})
export class Child1Component {
@Input() child1value: string;
}
在 parent.component.ts 中尝试使用{{fromapp}}
,例如保存在临时变量中等等,但它不起作用。我收到错误,说未定义parent.component
fromapp
。
如何做组件的多链,它的基础知识对吗?
无效的
<p><child1-tag [child1value] = {{fromapp}} ></child1-tag>
它应该是
<p><child1-tag [child1value]="fromapp"></child1-tag>
-
{{}}
字符串化值 -
{{}}
不能与[]
、()
或 *xxx(如*ngFor
)结合使用
这是解决它的方法
<parent-tag fromappforchild1 = "From Level 0-Child1" fromappforchild2 = "FromLevel 0-Child2" ></parent-tag>
详细文档在这里
https://angular.io/docs/ts/latest/api/core/Input-var.html
仍然不清楚在父标签内做什么,如何控制。例如,在我的app.component.ts中,如果我有templevel0 ="test",我根本无法将其放在父标签中。