跳转到主要内容
liangruming 提交于 8 January 2014

Drupal7中

1.新建了一个视频内容类型video,在该内容类型里,创建了2字段(上传视频文件flv格式、封面图片)(机器可读名称为field_video ,  field_img)

2.创建了一个视频视图view(名称video)定义了2个主题文件

views-view--video.tpl.php       views-view-fields--video.tpl.php

请问在views-view-fields--video.tpl.php如何输出2字段(上传视频文件flv格式、封面图片)的路径??

谢谢!

Drupal 版本

http://drupal.stackexchange.com/questions/88079/how-can-i-get-file-field-url-in-drupal-7-from-views-of-its-content-type

change the Formatter of file to URL to filein views administrative menu and then by this code

strip_tags($fields['field_file']->content);you will get the url

确实去掉了所有多余的html tag,也输出了文件名,但不知为何,多了一个空格

像这样子<div> video.flv</div>

正确应该是<div>video.flv</div>