在新的角度组件中,$scope 不能被注入,所以我不能使用标准的 $emit。
如何从组件向父控制器发出值?
我在 appCtrl 中有这个:
$scope.$on('eventName', function (event, args) {
this.pageTitle = args.pageTitle;
}.bind(this));
通常我已经使用:
this.scope.$emit('eventName', { pageTitle: _this.campaign.title });