单击警报按钮后如何重定向到当前页面

时间:2019-10-01 15:00:31

标签: angular alert ngfor

单击警报按钮后,有什么方法可以重定向到或刷新当前页面?

我希望在单击警报按钮后重新加载当前页面,这可能吗?

预先感谢您的贡献。

3 个答案:

答案 0 :(得分:1)

只需使用window.location.reload()重新加载当前页面即可。

答案 1 :(得分:0)

没有任何代码,我们几乎无法提供帮助...

但是您基本上想要这样的东西:StackBlitzExample of 2 way binding

ts:

objectArr = []
//update this array with from your subscribe of the http request
//something like this
update(): void {
    this.{service}.httpRequest().subscribe((result: data[]) => {
        this.objectArr = data; //bind the new data to the array you are using to create the table
    });
}

html:

<-- your table element -->
<div *ngFor="let obj of objectArr">

这是最简单的2种方式绑定。在更新objectArr数组时,它将重新生成表。

答案 2 :(得分:0)

我使用了window.location.href = './url';,它工作正常。至少刷新了页面。