admin管理员组文章数量:1420073
I am writing an angular2 universal app. It has a d3 chart, but I was hoping to only render the d3 chart on the client side (browser) and not try to render it on the server. Is there an interface in angular2 universal that will only run a ponent method only on the client side?
i.e.
class ComponentWithChart implements OnInit, ngUniversalBrowser {
elem;
constructor( private viewContainerRef:ViewContainerRef) {}
ngUniversalBrowserOnInit() {
this.elem = this.viewContainerRef.element.nativeElement;
d3.select(this.elem).append('div').style({
'background-color':'yellow'
});
}
}
Is there anything like the example above that might allow me to only run the ngUniversalBrowser
method only in the browser OnInit
?
I am writing an angular2 universal app. It has a d3 chart, but I was hoping to only render the d3 chart on the client side (browser) and not try to render it on the server. Is there an interface in angular2 universal that will only run a ponent method only on the client side?
i.e.
class ComponentWithChart implements OnInit, ngUniversalBrowser {
elem;
constructor( private viewContainerRef:ViewContainerRef) {}
ngUniversalBrowserOnInit() {
this.elem = this.viewContainerRef.element.nativeElement;
d3.select(this.elem).append('div').style({
'background-color':'yellow'
});
}
}
Is there anything like the example above that might allow me to only run the ngUniversalBrowser
method only in the browser OnInit
?
2 Answers
Reset to default 5import { isBrowser } from 'angular2-universal';
isBrowser is a boolean that you can import in your ponent and then execute code coditionaly only if it's running on client.
if (isBrowser) {
// this will not run on server
}
I think i got an answer. But it's a plete hack, and i'm sure they weren't intending for you to do this.
I ran into a dead-end myself (which forced me to turn off angular-universal/prerendering). My loss might be your gain.
There are particular objects that aren't available when you are pre-rendering. Mainly, "window", ie, "document.window".
Why don't you try adding a conditional statement in your ponent that checks whether the object exists. If it doesn't, load up your yellow background. Otherwise, load as normal.
I'm not sure if this means your ponent will fail to refresh when the "true" client finishes loading. But i'm sure you can set something up to watch for "window" and make it happen.
ngInit() {
if (!window) {
// yellow background placeholder
} else
// real plumbing
}
}
本文标签: javascriptCan I run a component method only in the client using Angular2 UniversalStack Overflow
版权声明:本文标题:javascript - Can I run a component method only in the client using Angular2 Universal? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745331505a2653833.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论