gpt4 book ai didi

angular - 在angular2中插入具有相对路径的图像

转载 作者:太空狗 更新时间:2023-10-29 18:03:03 25 4
gpt4 key购买 nike

我正在尝试在 angular2 中插入图像。我的图片名称保存在mypicture多变的。我这样试过<img [src]="../../../public/img/{{mypicture}}" />但它没有用。

我在控制台中看到这个错误:

Error: Uncaught (in promise): Template parse errors:
Parser Error: Got interpolation ({{}}) where expression was expected

最佳答案

而不是那样做绑定(bind)前联系完整路径

例如:

public fullPath:string;
public myPicture:string;

getMyPicture(){
this.fullPath = "../../../public/img/"+ this.myPicture;
}

html

 <img [src]="fullPath" />

关于angular - 在angular2中插入具有相对路径的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37239202/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com