2

我正在尝试使用以下代码获取存储在用户模块中的图像 URL:

{{ user:profile user_id="3" }}

{{ display_name }}

{{ company }}

{{ profile_picture }} 

{{ /user:profile }}

{{ profile_picture }}是图像,所有在页面上显示为“数组”的内容。其他变量按照我的意愿出现,图像刚刚给我带来了问题。图像正确存储在文件模块中,我似乎无法让它出现在页面上。

任何帮助,将不胜感激

4

1 回答 1

0

profile_picture是一个数组。image如果您想要图像 URL ,则必须访问 的子元素。

{{ user:profile user_id="3" }}
  {{ profile_picture:image }}
{{ /user:profile }}
于 2013-02-01T20:19:29.187 回答