public function actionCancelApp() { $data = Yii::$app->request->post(); $phone = User::findOne(['phone' => $data['phone']]); $info = CollectPerson::findOne(['userid' => $phone['id'], 'app' => $data['app']]); if ($info) { $info->delete(); echo json_encode(array('flag' => 1, 'msg' => 'Cancel collect success!')); } else { echo json_encode(array('flag' => 0, 'msg' => 'Cancel collect fail!')); } }
/** * Finds the CollectPerson model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return CollectPerson the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = CollectPerson::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }