如何将属性从父组件传递到其子组件' Angular 2
中的类构造函数?
计算出一半的神秘感,因为属性可以毫无问题地传递给视图。
import {Component, View, bootstrap} from 'angular2/angular2';
import {Example} from 'client/example';
@Component({
selector: 'app'
})
@View({
template: `<p>Hello</p>
<example [test]="someAttr"
[hyphenated-test]="someHyphenatedAttr"
[alias-test]="someAlias"></example>
`,
directives: [Example]
})
class App {
constructor() {
this.someAttr = "attribute passsed to component";
this.someHyphenatedAttr = "hyphenated attribute passed to component";
this.someAlias = "attribute passed to component then aliased";
}
}
bootstrap(App);
import {Component, View, Attribute} from 'angular2/angular2';
@Component({
selector: 'example',
properties: ['test', 'hyphenatedTest', 'alias: aliasTest']
})
@View({
template: `
<p>Test: {{test}}</p>
<!-- result: attribute passsed to component -->
<p>Hyphenated: {{hyphenatedTest}}</p>
<!-- result: hyphenated attribute passed to component -->
<p>Aliased: {{alias}}</p>
<!-- result: attribute passed to component then aliased -->
<button (click)="attributeCheck()">What is the value of 'this.test'?</button>
<!-- result: attribute passed to component -->
`
})
/*******************************************************************
* HERE IS THE PROBLEM. How to access the attribute inside the class?
*******************************************************************/
export class Example {
constructor(@Attribute('test') test:string) {
console.log(this.test); // result: undefined
console.log(test); // result: null
}
attributeCheck() {
alert(this.test);
}
}
重新迭代:
如何访问从父组件传入的子组件类中的属性?
答案 0 :(得分:11)
已更新至beta.1
您可以将ngOnInit用于此
@Component({
selector: 'example',
inputs: ['test', 'hyphenatedTest', 'alias: aliasTest'],
template: `
<p>Test: {{test}}</p>
<!-- result: attribute passsed to component -->
<p>Hyphenated: {{hyphenatedTest}}</p>
<!-- result: hyphenated attribute passed to component -->
<p>Aliased: {{alias}}</p>
<!-- result: attribute passed to component then aliased -->
<button (click)="attributeCheck()">What is the value of 'this.test'?</button>
<!-- result: attribute passed to component -->
`
})
export class Example {
ngOnInit() {
console.log(this.test);
this.attributeCheck();
}
attributeCheck() {
alert(this.test);
}
}
答案 1 :(得分:0)
如果您想要访问子组件中的属性值,您可以:
import {Component, View, Attribute} from 'angular2/angular2';
@Component({
selector: 'example',
properties: ['test', 'hyphenatedTest', 'alias: aliasTest']
})
@View({
template: `
<p>Test: {{_test}}</p>
<!-- result: attribute passsed to component -->
<p>Hyphenated: {{_hyphenatedTest}}</p>
<!-- result: hyphenated attribute passed to component -->
<p>Aliased: {{_alias}}</p>
<!-- result: attribute passed to component then aliased -->
`
})
export class Example {
_test: string;
_hyphenatedTest: any; //change to proper type
_alias: any; //change to proper type
constructor() {
}
set test(test) {
this._test = test;
}
set hyphenatedTest(hyphenatedTest) {
this._hyphenatedTest = hyphenatedTest;
}
set alias(alias) {
this._alias = alias;
}
}
属性值更改时运行 set
方法。值将传递到您可以在组件中操作的本地变量。
重要的事情:
set
方法中参数的名称必须与此方法的名称相同(因此它意味着它必须与属性名称相同)