我试图通过绑定将一些参数传递给我的组件,但不幸的是我没有运气在我的控制器中使用这些参数,这是我的代码:
angular.module('project1').component('menu', {
templateUrl: '/static/js/templates/menu.template.html',
bindings: {
rid: '@'
},
controller: ['Restaurant', function RestaurantListController(Restaurant) {
console.log(this.rid);
console.log(this);
this.restaurant = Restaurant.get({restaurantId: this.rid});
}]
});
HTML 组件:
<menu rid="1"></menu>
有趣的是我可以访问模板中的参数,当我执行 2 个控制台日志时,第一个是未定义的,但在第二个中我可以看到 rid 变量......所以,我真的不明白我错过了什么。