如果我将图像放在链接中,则单击图像时页面会刷新。
我使用角度7.1.4
这项工作无需重新加载:
from auxfiles import folder
import pandas as pd
input_file_path = input("Please enter the file path:\n")
to_test = pd.read_csv(input_file_path)
folder.test_one(to_test)
这将刷新页面:
<img
class="img-fluid m-auto ml-md-4"
src="assets/img/Logo.png"
style="cursor: pointer"
[routerLink]="['/home']"
/>
我想要链接,因为我希望用户可以在新标签页中打开页面。
有人可以帮助我吗?