Angular 2,主要组件内部的组件

时间:2015-03-18 12:09:36

标签: angular

我在angular.io上玩过角度2演示。 现在我想创建一个新组件并在我的应用程序中使用它。

我当前的应用:

import {Component, Template, bootstrap} from 'angular2/angular2';
import {UsersComponent} from './components/users/component.js';

// Annotation section
@Component({
  selector: 'my-app'
})
@Template({
  url:"app.html"
})
// Component controller
class MyAppComponent {
  newName:string;
  names:Array<string>;
  constructor() {
    this.name = 'Florian';
  }

  showAlert(){
    alert("It works");
  }

  addName(){
    names.push(newName);
    newName = "";
  }
}

bootstrap(MyAppComponent);

我的组件:

import {Component, Template, bootstrap} from 'angular2/angular2';
// Annotation section
@Component({
  selector: 'users'
})
@Template({
  url:"./template.html"
})
// Component controller
class UsersComponent {
  newName:string;
  names:Array<string>;
  constructor() {

  }

  addName(){
    names.push(newName);
    newName = "";
  }
}

我不确定我的用户组件的语法是否正确。

我的应用模板:

<h1>Hello {{ name }}</h1>
<h2>{{2+2}}</h2>
<hr />
<button (click)="showAlert()">Click to alert</button>
<users></users>

那么如何连接用户组件?

我在控制台中收到的错误:

 "Error loading "components/users/component.js" at <unknown>↵Error loading "components/users/component.js" from "app" at http://localhost:8080/app.es6↵Cannot read property 'replace' of undefined"

2 个答案:

答案 0 :(得分:25)

Angular日历演示有两个嵌套组件(日历和日历单元格)https://github.com/djsmith42/angular2_calendar.git。从我所看到的,你的MyAppComponent应该引用@ Template&#39; s指令列表中的Users组件,如下所示:

@Template({
  url: System.baseURL+'app/components/calendar/calendar.html',
  directives: [
    Foreach,
    If,
    CalendarCell
  ]
})

答案 1 :(得分:11)

Angular2网络https://angular.io/docs/ts/latest/tutorial/toh-pt3.html#的此链接中,您可以看到在directives: [...]内添加@Components,例如:

@Component({
  selector: 'my-app',
  directives: [UsersComponent]
})

但是否则组件内部的链接使用模板,如果您在组件外使用@Template({ url:"app.html"}),则不知道这是否有效。

您可以查看文件名app.appcomponet.ts以获取更多详细信息,希望有所帮助。