public function createProfile()
 {
     $profile = new Profile();
     $profile->attributes = ['event_id' => $this->getEvent()->id, 'name' => $this->name, 'age' => $this->age, 'gender' => $this->gender, 'height' => $this->height, 'dress' => $this->dress, 'appearance' => $this->appearance];
     $profile->save();
     $this->_profile = $profile;
 }
 /**
  **创建一个新的涉事儿童的个人信息.如果创建成功,浏览器会跳转到该涉事儿童个人信息的详情页面.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Profile();
     try {
         if ($model->load($_POST) && $model->save()) {
             return $this->redirect(Url::previous());
         } elseif (!\Yii::$app->request->isPost) {
             $model->load($_GET);
         }
     } catch (\Exception $e) {
         $msg = isset($e->errorInfo[2]) ? $e->errorInfo[2] : $e->getMessage();
         $model->addError('_exception', $msg);
     }
     return $this->render('create', ['model' => $model]);
 }