2015-05-08 29 views

回答

0

你的视图定义是错误的,它忽略了“列”阵列,作为消息解释。

protected static $_views = array(
    'hugot_summary' => array(
     'columns' => array(
      'id', 
      'user_id', 
      'photo_id', 
      'hugot', 
      'url', 
      'comment_count', 
      'upvotes', 
      'created_at', 
      'updated_at' 
     ), 
    ), 
); 
相关问题