头像未在插件中显示

如果将字符串中的 {size} 部分替换为数字,它应该会生成头像。

也许你可以创建一个计算属性,它接收 avatar_template 并将其替换为一个数字,例如:

  @discourseComputed("user.avatar_template")
  avatarSrc(avatarTemplate) {
    return avatarTemplate.replace("{size}", "75");
  },

然后在你的模板中调用它:

<img src={{avatarSrc}} alt="the profile photo of the user"/>
3 个赞