15

我想在 A 中引用一个组件的属性。那个组件的构造函数 B.那个组件的模板。这方面的 api 似乎有点变化,但我希望以下工作:

<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
  }
}

Plunkr

我究竟做错了什么?

4

3 回答 3

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被忽略了。不确定这是有意的还是错误的。

编辑:我刚刚从源代码构建了 Angular2 并尝试了@Attribute注释,它按照文档工作(但仅在嵌套组件上)。

constructor(@Attribute('name') name:string) { 
    console.log(name);
};

将“Matt”打印到控制台。

于 2015-05-02T09:43:36.040 回答
4

当前的方法是将属性装饰为@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

于 2016-06-04T05:16:21.930 回答
1

其实,你可以做得更好。在组件中定义属性时,始终以下列方式指定它:

howYouReadInClass:howYouDefineInHtml

因此,您也可以执行以下操作:

@Component({
  selector: 'my-component',
  properties: {
   'greetingJS:greetingHTML'
  }
})
@View({
  template: '{{greeting}} world!'
})
class App {
set greetingJS(value){
this.greeting = value;
}
  constructor() {

  }
}

这样您就不会在 TS 中遇到冲突,并且您将拥有更清晰的代码 - 您将能够像在部分组件中定义变量一样定义变量。

于 2016-01-08T11:54:07.513 回答