Vue - 属性内插值

sha*_*rgy 4 interpolation attributes vue.js

我有以下错误:

src="/images/{{ this.phCode }}/{{ this.galCode }}/thumb/thumb_{{ this.fileName }}": 
Interpolation inside attributes has been removed. Use v-bind or the colon shorthand instead. 
For example, instead of <div id="{{ val }}">, use <div :id="val">.
Run Code Online (Sandbox Code Playgroud)

虽然示例非常清楚,但我很难理解如何针对我的情况执行此操作,因为属性中有多个变量。

Maj*_*awi 8

您可以按如下方式使用模板文字:

:src="`/images/${this.phCode}/${this.galCode}/thumb/thumb_${this.fileName}`"
Run Code Online (Sandbox Code Playgroud)