嗨,我有以下组件,
import {Component, OnInit, Input} from '@angular/core';
import { Observable } from 'rxjs/Rx';
@Component({
selector: 'chart',
templateUrl: 'app/comps/chart.html',
providers: [],
})
export class ChartComp {
constructor() {
this.options = {
title : { text : 'simple chart' },
series: [{
data: [29.9, 71.5, 106.4, 129.2],
}]
};
}
options: Object;
}
和模块文件:
import { ChartModule } from 'angular2-highcharts';
@NgModule({
imports: [ChartModule.forRoot(require('highcharts'))],
declarations: [Chart],
exports: [Chart]})
export class modulefile {
....
}
和html文件
<chart [options]="options"></chart>
import { Component } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'example-chart',
templateUrl:'app/comps/chart/example-chart.html',
providers: [],
})
export class ExampleChart{
constructor(
) {
this.options = {
title : { text : 'simple chart' },
series: [{
data: [29.9, 71.5, 106.4, 129.2],
}]
};
}
options: Object;
}
和html,
<chart [options]="options"></chart>
它的选项是传递给html的配置.但不确定为什么会收到这个奇怪的错误,
EXCEPTION: Uncaught (in promise): Error: Template parse errors:
Can't bind to 'options' since it isn't a kNown property of 'chart'.
1. If 'chart' is an Angular component and it has 'options' input, then verify that it is part of this module.
2. If 'chart' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schemas' of this component to suppress this message.
我尝试为选项添加@Input.然后我得到一个DI错误.有想法吗?提前致谢.
解决方法:
您需要将其作为输入,以便能够使用属性绑定与其绑定:
@input()
options: Object;
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。