我正在创建一个调用 Facebook javascript api 的 Facebook 服务,并且想知道在我的值更新时如何最好地实现更改检测。
我有UserService
一个currentUser
属性是 BehaviorSubject:
currentUser: Subject<User> = new BehaviorSubject<User>(new User(null));
当我想更新用户以响应 facebook javascript sdk 告诉我用户已登录或注销时,我会更新它并需要tick()
调用ApplicationRef
:
updateUser(user: User) {
console.log('UserService.updateUser:', user);
this.currentUser.next(user);
this.appRef.tick(); // UI does not update without this
}
constructor(facebook: Facebook) {
this.facebook.facebookEvents.filter(x => x != null
&& x.eventName == 'auth.authResponseChange')
.subscribe((event) => {
this.updateUser(new User(event.data));
}
}
在我的组件中,我将来自用户服务的“currentUser”存储在构造函数中并绑定到 value 属性:
<h2>Logged into Facebook as {{currentUser.value.name}}</h2>
<p>Is this you? <img src="{{currentUser.value.profilePicUrl}}"></p>
难道我做错了什么?有没有比在从外部库触发更改后必须调用 ApplicationRef.tick() 更好的方法?
编辑
我尝试使用 NgZone 并且它不起作用,使用不同的事件将提要中的帖子作为服务页面返回:
constructor(userService: UserService, private ref: ApplicationRef, private zone: NgZone)
...
this.postsSubject.subscribe((post) => {
this.zone.runOutsideAngular(() => { // doesn't do anything
this.posts.push(post);
console.log('postsSubject POST, count is ', this.posts.length);
ref.tick(); // required to update bindings
});
}
控制台显示计数递增,但仅当我添加调用时 html 绑定{{posts.length}}
才会更新...ref.tick()
我想我在某处看到您可以从顶级应用程序组件中为任何组件提供“输入”,这可能是登录用户的方式,但不是其他调用,例如在提要中获取帖子......