ngf-src 不适用于 {{vm.detail.id}}
ngf-src not working with {{vm.detail.id}}
我想在页面加载时显示图像预览或用户头像,但 ngf-src
没有按我的预期工作:
<img id="avatar" class="ui centered image" ngf-src="avatar || 'http://localhost:8000/img/user_avatar/{{vm.detail.id}}.jpg'">
不知怎么的,我无法从服务器获取图片。
它在 HTML 上显示如下:
<img src="http://localhost:8000/img/user_avatar/.jpg" id="avatar" class="ui centered image" ngf-src="avatar || 'http://localhost:8000/img/user_avatar/5.jpg'">
请问有人帮忙吗!
我找到了我的问题的解决方案,我把它贴在这里以防它能帮助到其他人:
<img id="avatar" class="ui centered image" ngf-src="avatar || vm.avatarURL">
vm.avatarURL
来自控制器
我想在页面加载时显示图像预览或用户头像,但 ngf-src
没有按我的预期工作:
<img id="avatar" class="ui centered image" ngf-src="avatar || 'http://localhost:8000/img/user_avatar/{{vm.detail.id}}.jpg'">
不知怎么的,我无法从服务器获取图片。 它在 HTML 上显示如下:
<img src="http://localhost:8000/img/user_avatar/.jpg" id="avatar" class="ui centered image" ngf-src="avatar || 'http://localhost:8000/img/user_avatar/5.jpg'">
请问有人帮忙吗!
我找到了我的问题的解决方案,我把它贴在这里以防它能帮助到其他人:
<img id="avatar" class="ui centered image" ngf-src="avatar || vm.avatarURL">
vm.avatarURL
来自控制器