示例#1
0
 public function actionGetentry()
 {
     $id = Yii::$app->request->get('id');
     $tags = EntryTag::findAll(['entry_id' => $id]);
     $retTags = [];
     // TODO relations
     foreach ($tags as $k => $v) {
         $retTags[] = Tag::findOne($v['tag_id']);
     }
     Yii::$app->response->format = Response::FORMAT_JSON;
     return (object) ['data' => Entry::findOne($id), 'tags' => $retTags];
 }