我只是在网格中添加了一个名为coordinatorname
的列。为此,我根据需要修改了WebApi,并看到了数据,这很好。Angular2
有问题。
export class WorkflowActivity{
activityName: string;
assigneeName: string;
coordinatorName: string;
serviceName: string;
createdDate: Date;
dueDate: Date;
status: string;
isSelected: boolean;
isCritical: boolean;
isForwarded: boolean;
}
<tr *ngFor='let activity of pagedWorkflowActivities'>
<td [innerText]='activity.assigneeName'>
</td>
<td [innertext]='activity.coordinatorName'>
</td>
<td>
<i class="fa" [ngClass]="{'fa-exclamation-triangle warning': activity.isCritical, 'fa-share sky': activity.isForwarded}"
aria-hidden="true"></i> {{activity.serviceName}}
</td>
<td [innerText]='activity.activityName'>
</td>
<td [innerText]='activity.createdDate | date: "dd/MM/yyyy"'>
</td>
</tr>
异常:未捕获(在promise中):错误:模板解析错误:不能绑定到'innertext',因为它不是'td'的已知属性。(“ename'>][innertext]='activity.coordinatorname'>”):workflowDashboardComponent@72:44错误:模板分析错误:无法绑定到'innertext',因为它不是'td'的已知属性。(“ename'>][innertext]='activity.coordinatorname'>”):workflowDashboardComponent@72:44 at templateParser.parse app/Angular/node_modules/@Angul/compiler/bundles/compiler.umd.js:16905:53)在eval(http://localhost/helixwebapp/angular/node_modules/@Angul/compiler/bundles/@Angul/compiler/compiler.umd.js:16905:85)在set.foreach(原生)在compile dist/zone.js:232:26)位于object.oninvoke(http://localhost/helixwebapp/angular/node_modules/@angull/core/bundles/core.umd.js:6242:41)在zoneDelegate.invoke(http://localhost/helixwebapp/angular/node_modules/zone-js/dist/zone.js:231:32),在zone.run(http://localhost/helixwebapp/angular/node_modules/zone-js/dist/zone.js:114:43),在http://localhost/helixwebapp/angular/node_modules/zone-js/dist/zone.js:502:57
不过,如果我使用{{}}
进行类似操作,效果很好
<td>{{activity.coordinatorName}}</td>
为什么它不能与innertext一起工作?我需要为该栏做任何设置吗?
在使用Angular编程时,属性是区分大小写的。您编写了innertext
而不是innertext
。
<td [innerText]='activity.coordinatorName'>
或
<td innerText={{activity.coordinatorName}}>
我用的是angular2 beta 15,在我的一个模板中我做到了: 但是,我得到了这个例外 因此,如何解决?有什么想法?
完整代码为: app.module为: 怎么了,为什么对我不起作用?
我正在尝试将AGM Angular谷歌地图(https://github.com/SebastianM/angular-google-maps)添加到我的Angular4项目中 指南是:https://github.com/SebastianM/angu 当我访问带有agm组件的页面时遇到的错误: 我已经确定/尝试过; 我的模块导入 在我的模块中向架构添加了CUSTOM_ELEMENTS_SCHE
我正在尝试测试控件的angular2双向绑定。以下是错误: app.component.html app.component.ts app.component.spec.ts
我正在创建一个新的Angular 7应用程序,最近几天我一直在研究这个问题,但我无法找到解决这个错误的方法: app.module.ts app-routing.module.ts app.component.ts 我不知道问题出在哪里。从我所能知道的情况来看,我有适当的进口和出口。如果你看到我不能的东西,请随时发表评论。 如果你需要更多的信息,如更多的代码,也请让我知道。
我需要根据计算的百分比做一个进度弧,我已经创建了一个自定义指令来访问来自用户的svg属性,当在模板中更新时,我得到了以下错误: 不能绑定到'cx',因为它不是已知的本机属性 不能绑定到'cy',因为它不是已知的本机属性 等等。