Mage/Adminhtml/Widget/Grid/Column/Renderer/Concat.php - 有人可以提供一个使用示例吗?例如,它可以用来代替:
$this->addColumn('order_item', array(
'header'=> $this->__('Order # (Item #)'),
'sortable'=> true,
'index'=> 'order_item',
'filter_index'=> "CONCAT(orders.increment_id, ' (', main_table.item_id, ')')",
'width'=> '140px',
));
Run Code Online (Sandbox Code Playgroud) 在 Magento 中你可以找到类似的结构
$select->joinLeft(
array('c' => $couponTable),
'c.customer_id=root.entity_id AND c.rule_id=:rule_id',
array('c.coupon_id')
);
Run Code Online (Sandbox Code Playgroud)
二元运算符=:的作用是什么?