Vue - 属性内插值

Vue - Interpolation inside attributes

我有以下错误:

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">.

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

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

:src="`/images/${this.phCode}/${this.galCode}/thumb/thumb_${this.fileName}`"