这让我很困惑。我可能不太了解订阅的工作原理。
Angular 2最终版本
目标:根据角色隐藏/显示导航菜单 方法:我使用Facebook来验证用户。身份验证后,将检索用户角色并用于确定是否应显示“管理”菜单。使用true进行observable.next调用,导航栏compoenent订阅将获取标志并将isAdmin更改为true。(isAdmin为false以开始)这将允许显示Admin菜单。
问题:订阅者正确选取了真正的标志,并且isAdmin设置为true。但是,管理员菜单不会显示。
navbar.component.ts
@Component({
selector: 'as-navbar',
templateUrl: 'app/shared/navbar/navbar.html',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class NavbarComponent {
@Input() brand: string;
public isAdmin:boolean;
constructor(private _securityService:SecurityService){
let self = this;
this._securityService.isAdminObservable.subscribe(function (flag) {
this.isAdmin = flag;
console.log('subscribe received on navbar');
}.bind(this));
}
}
navbar.html
<li class="dropdown" *ngIf="isAdmin">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Admin<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a [routerLink]="['/campaigns']">Campaigns</a></li>
<li><a [routerLink]="['/products']">Products</a></li>
<li><a [routerLink]="['/products']">Reports</a></li>
</ul>
</li>
app.component.ts
constructor(private _http: Http, private _jsonp: Jsonp, private _securityService:SecurityService) {
this.appBrand = CONSTANTS.MAIN.APP.BRAND;
let self = this;
setInterval(function(){
self._securityService.setAdminStatus(true);
console.log('set from app component');
}, 5000)
}
security.service.ts
@Injectable()
export class SecurityService{
public isAdmin:Subject<boolean>=new Subject<boolean>();
public isAdminObservable = this.isAdmin.asObservable();
constructor(){}
setAdminStatus(flag){
this.isAdmin.next(flag);
}
}
这有什么问题吗?或者有更好的方法来实现目标? 任何建议将不胜感激! 感谢
更新
通过peeskillet提供的答案,我从组件中删除了changeDetection行并且它可以工作。
但是,当我进一步处理代码时,我会移动
self._securityService.setAdminStatus(isAdmin);
到另一个服务(在这种情况下是Facebook服务)并从应用程序组件调用该服务。 navbar.compoenent.ts中的订阅确实获取了更改,但没有触发更改检测。我必须手动触发检测才能使其正常工作。
更新了navbar.component.ts
@Component({
selector: 'as-navbar',
templateUrl: 'app/shared/navbar/navbar.html'
})
export class NavbarComponent {
@Input() brand: string;
public isAdmin:boolean=false;
constructor(private _securityService:SecurityService, private cdr: ChangeDetectorRef){
this._securityService.isAdminObservable.subscribe(function (flag) {
this.isAdmin = flag;
this.cdr.detectChanges();
console.log('subscribe received on navbar');
}.bind(this));
}
}
更新了app.component.ts
@Component({
selector: 'as-main-app',
templateUrl: 'app/app.html'
})
export class AppComponent {
public appBrand: string;
constructor(private _http: Http,
private _facebookService:FacebookService
) {
this.appBrand = CONSTANTS.MAIN.APP.BRAND;
this._facebookService.GetLoginStatus();
}
}
这很有意思。显然,我需要了解有关角度2变化检测的更多信息。如果有人知道一个很好的参考,请与我分享。
谢谢!
答案 0 :(得分:4)
这是因为你正在使用changeDetection: ChangeDetectionStrategy.OnPush
。这意味着仅当@Input
输入更改 1 时才会发生组件的更改检测。
因此,如果您删除@Component.changeDetection
,它应该有用。
如果您的目标是保持 {/ 1}}策略,那么一个选项就是使用OnPush
ChangeDetectorRef
1 - 另见ChangeDetectionStrategy.OnPush and Observable.subscribe in Angular 2