我创建了一个Twitter小部件,我试图将它放在我的Angular 2项目中,但JS文件不起作用。
如果我用JS(Here)插入它,它可以工作,但是当我切换到另一个选项卡并返回(我安装了Angular Routing)时,它会消失并显示A标签中的任何内容(所以,&#34 ;推文由...")。
HTML代码(它在家庭组件中):
<md-card-content>
<a class="twitter-timeline" data-lang="en" data-height="350" data-theme="light" data-chrome="noborders nofooter noheader noscrollbar transparent" href="https://twitter.com/profile">Tweets by profile</a>
</md-card-content>
home.component.ts中的脚本,代码由@ Arg0n提供(查看答案部分):
import { Component, OnInit } from '@angular/core';
import { Router, NavigationEnd } from '@angular/router';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {
constructor(private _router : Router) { }
public ngOnInit() {
this._router.events.subscribe(val => {
if (val instanceof NavigationEnd) {
(<any>window).twttr = (function (d, s, id) {
let js: any, fjs = d.getElementsByTagName(s)[0],
t = (<any>window).twttr || {};
if (d.getElementById(id)) return t;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function (f: any) {
t._e.push(f);
};
return t;
}(document, "script", "twitter-wjs"));
twttr.widgets.load();
}
})
}
}
修改
好吧,我做了一些研究,发现我必须用twttr.widgets.load();
再次加载小部件,但这样做,它会引发我的错误。
我编辑了上面的代码,因此您可以看到我尝试过的内容。上面的代码返回错误:
[ts] Cannot find name 'twttr'
如果我追加(窗口)。对它,它抛出了我:
EXCEPTION: Uncaught (in promise): TypeError: Cannot read property 'load' of undefined
有关load属性的文档位于:https://dev.twitter.com/web/javascript/initialization
答案 0 :(得分:4)
好吧,我找到了解决方法。当我们在Angular路由器之间切换时,小部件会卸载。这就是我们放置订阅者的原因,因此我们每次在标签之间切换时都会加载小部件。我们可以看到here如何为延迟加载内容加载小部件。页面准备就绪后,我们可以使用该功能加载小部件。在视图被破坏后不要忘记取消订阅!
代码:
import { Component, OnDestroy } from '@angular/core';
import { Router, NavigationEnd } from '@angular/router';
@Component({ ... })
export class HomeComponent implements OnDestroy {
private twitter: any;
constructor(private _router: Router) {
this.initTwitterWidget();
}
initTwitterWidget() {
this.twitter = this._router.events.subscribe(val => {
if (val instanceof NavigationEnd) {
(<any>window).twttr = (function (d, s, id) {
let js: any, fjs = d.getElementsByTagName(s)[0],
t = (<any>window).twttr || {};
if (d.getElementById(id)) return t;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function (f: any) {
t._e.push(f);
};
return t;
}(document, "script", "twitter-wjs"));
if ((<any>window).twttr.ready())
(<any>window).twttr.widgets.load();
}
});
}
ngOnDestroy() {
this.twitter.unsubscribe();
}
}
答案 1 :(得分:2)
我的评论示例(相关部分):
import { Component, OnInit } from '@angular/core';
import { Router, NavigationEnd } from '@angular/router';
@Component({ ... })
export class MyComponent implements OnInit {
constructor(private _router: Router) {}
public ngOnInit() {
this._router.events.subscribe(val => {
if (val instanceof NavigationEnd) {
(<any>window).twttr = (function (d, s, id) {
let js: any, fjs = d.getElementsByTagName(s)[0],
t = (<any>window).twttr || {};
if (d.getElementById(id)) return t;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function (f: any) {
t._e.push(f);
};
return t;
}(document, "script", "twitter-wjs"));
}
});
}
}
答案 2 :(得分:0)
这将对我适用于angular 7.2.2和ionic 4.1。 angular可以构建,而ionic可以构建应用程序并在cordova上进行测试。
来自embedded Twitter widget on Angular 2+ app only shows up on the first page load
的解决方案import { Component, OnInit, OnDestroy, AfterViewInit, PLATFORM_ID, Inject } from '@angular/core';
import { isPlatformBrowser } from '@angular/common';
constructor(@Inject(PLATFORM_ID) private platformId: Object) {}
ngAfterViewInit() {
if (isPlatformBrowser(this.platformId)) {
setTimeout(function() {
(<any>window).twttr = (function(d, s, id) {
let js, fjs = d.getElementsByTagName(s)[0], t = (<any>window).twttr || {};
if (d.getElementById(id)) return t;
js = d.createElement(s);
js.id = id;
js.src = 'https://platform.twitter.com/widgets.js';
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function(f) {
t._e.push(f);
};
return t;
}(document, 'script', 'twitter-wjs'));
(<any>window).twttr.widgets.load();
}, 100);
}
}
在.ts中放置此处,并将twitter标签放入模板文件中