我想在A中的组件上引用一个属性'组件的构造函数B.该组件的模板。这方面的apis似乎有点变化,但我希望以下工作:
<my-component [greeting]="hello"></my-component>
// my component.es6.js
@Component({
selector: 'my-component',
properties: {
'greeting': 'greeting'
}
})
@View({
template: '{{greeting}} world!'
})
class App {
constructor() {
console.log(this.properties) // just a guess
}
}
我做错了什么?
答案 0 :(得分:5)
我正在试验Angular2并遇到了同样的问题。 但是,我发现以下内容可以使用当前的alpha版本(2.0.0-alpha.21)
@Component({
selector: 'hello',
properties: {'name':'name'}
})
@View({
template:`<h1>Hello {{_name}}</h1>`
})
class Hello {
_name: string;
constructor() {
console.log(this);
};
set name(name){
this._name = name;
}
}
@Component({
selector: 'app',
})
@View({
template:
`
<div>
<hello name="Matt"></hello>
</div>
`,
directives: [Hello]
})
class Application {
constructor() { };
}
bootstrap(Application);
似乎忽略了传递给bootstrap
的Class上的属性。不确定这是故意还是错误。
编辑:我刚从源代码构建了Angular2并尝试了@Attribute
注释,它按照文档工作(但仅限于嵌套组件)。
constructor(@Attribute('name') name:string) {
console.log(name);
};
将“Matt”打印到控制台。
答案 1 :(得分:3)
目前的方法是将属性装饰为@Input。
@Component({
`enter code here`selector: 'bank-account',
template: `
Bank Name: {{bankName}}
Account Id: {{id}}
`
})
class BankAccount {
@Input() bankName: string;
@Input('account-id') id: string;
// this property is not bound, and won't be automatically updated by Angular
normalizedBankName: string;
}
@Component({
selector: 'app',
template: `
<bank-account bank-name="RBC" account-id="4747"></bank-account>`,
directives: [BankAccount]
})
class App {}
bootstrap(App);
以上示例来自https://angular.io/docs/ts/latest/api/core/Input-var.html
答案 2 :(得分:1)
实际上,你可以做得更好。在组件中定义属性时,始终按以下方式指定它:
howYouReadInClass:howYouDefineInHtml
所以,你可以做以下事情:
@Component({
selector: 'my-component',
properties: {
'greetingJS:greetingHTML'
}
})
@View({
template: '{{greeting}} world!'
})
class App {
set greetingJS(value){
this.greeting = value;
}
constructor() {
}
}
通过这种方式,您不会在TS中出现冲突,并且您将拥有更清晰的代码 - 您可以在partent组件中定义变量时定义变量。