作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有人知道扩展它的“正常”用途的方法(默认情况下是 id
并且很容易更改为 field1
)?我有一个 displayField 集如下:
$this->displayField(['name', 'desc']);
Name; Description
在模板文件中调用时。我知道这是一种软糖,但有一种方法可以操纵它来显示
Name - Description
例如,只需使用
displayField
?
最佳答案
使用虚拟字段,并指定用作显示字段而不是使用多列,类似于
// ...
class YourEntity extends Entity
{
// ...
protected function _getNameDesc()
{
return
$this->_properties['name'] .
' - ' .
$this->_properties['desc'];
}
}
// ...
class YourTable extends Table
{
// ...
public function initialize(array $config)
{
$this->displayField('name_desc');
// ...
}
}
关于cakephp - 如何为多列显示字段使用自定义格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38425881/
我是一名优秀的程序员,十分优秀!