我正在尝试创建一个显示带有角度的产品的表格,但这些项目没有以HTML格式显示。如果有人发现代码有任何问题,请帮助我。
这是我的app.js:
(function (){
var app = angular.module('confirmados', []);
app.controler('ListaController', function (){
this.product = gem;
});
var gem = {
id: 1,
name: 'cool',
email: 'cool@'
};
这是我的HTML:
<tr ng-controller="ListaController as lista" class="reservas">
<td> {{lista.product.id}} </td>
<td> {{lista.product.name}} </td>
<td> {{lista.product.email}} </td>
</tr>
答案 0 :(得分:1)
你拼写错误controller
:
app.controler
应该是
app.controller