http://drupal.stackexchange.com/questions/32277/how-can-i-concatenate-two-fields-in-a-view
需要显示如下数据表格
表格的第三列是由两个字段组成的。分别是title 标题字段和body 内容字段。
默认情况下,一列只显示一个字段。如何同时显示两个呢?
这个问题难不到强大的views,要用到Re-write the output of this field,即重写字段输出功能。
实现步骤如下:
-
在字段列表中, 确保title在body前面
-
编辑字段title,选中"Exclude from display" 排斥显示。
-
编辑字段body,选中"Re-write the output of this field"
-
保存后重新打开,在刚才的复选框中下面会有"Replacement patterns." 替换规则的一个文本框。
- 在里面输入[title][body],保存后。新的body字段实际就是合并后的字段。