图像有时不Angular2显示

图像有时不Angular2显示

本文介绍了图像有时不Angular2显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个形象< IMG SRC =image.png方式>

当我使用 this._router.navigate(['/家庭']); ,有时,在页面图像将不会显示。相反,它表明这样的:

When I use this._router.navigate(['/Home']);, sometimes, the image in the page won't show. Instead it shows like this:

我试图改变这样的:

this._ngZone.run(() => {
    this._router.navigate(['/Home']);
});

但它不工作。什么可能会导致此?谢谢

But it does not work. What can potentially cause this? Thanks

推荐答案

< HEAD>
<基本href =/>
...
< /头>
使用,作为头后的第一行。

<head><base href="/">...</head> Use that as the first line after head.

之后使用图像的路径,按照/路径(HTML文件)的服务器路径。不使用HashStrategy

After that use the paths of image as per the server path of the / path(html file). Dont use HashStrategy

这篇关于图像有时不Angular2显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 04:47