若要删除数据库中的记录, 请按照下列步骤操作。我们已将Yii2文件夹命名为delete。
步骤1创建模型文件
在frontend / models文件夹中创建一个模型文件child.php。
<
?php namespace app\models;
use Yii;
class Child extends \yii\db\ActiveRecord { /** * @inheritdoc */ public static function tableName() { return 'child';
} /** * @inheritdoc */ public function rules() { return [ [['name', 'meaning', 'gender'], 'required'], [['name', 'meaning'], 'string', 'max' =>
100], [['gender'], 'string', 'max' =>
15] ];
} }
【YII数据库删除记录示例】步骤2在控制器中创建动作
在ChildController.php文件中创建一个actionDelete动作。
<
?php namespace frontend\controllers;
use Yii;
use app\models\Child;
use yii\web\Controller;
/** * manual CRUD **/ class ChildController extends Controller {/** * Create */ public function actionCreate() { $model = new Child();
// new record if($model->
load(Yii::$app->
request->
post()) &
&
$model->
save()){ return $this->
redirect(['index']);
} return $this->
render('create', ['model' =>
$model]);
} /** * Read */ public function actionIndex() { $child = Child::find()->
all();
return $this->
render('index', ['model' =>
$child]);
} /** * Edit * @param integer $id */ public function actionEdit($id) { $model = Child::find()->
where(['id' =>
$id])->
one();
// $id not found in database if($model === null) throw new NotFoundHttpException('The requested page does not exist.');
// update record if($model->
load(Yii::$app->
request->
post()) &
&
$model->
save()){ return $this->
redirect(['index']);
} return $this->
render('edit', ['model' =>
$model]);
} /** * Delete * @param integer $id */ public function actionDelete($id) { $model = Child::findOne($id);
// $id not found in database if($model === null) throw new NotFoundHttpException('The requested page does not exist.');
// delete record $model->
delete();
return $this->
redirect(['index']);
}}
步骤3运行
在浏览器上运行它。
http://localhost/delete/frontend/web/index.php?r = child%2Findex
文章图片
查看上面的快照, 单击表最后一行中的” 删除” 选项。
查看上面的快照, 相应的行将从表中删除。
文章图片
下载此示例
推荐阅读
- YII数据库读取记录示例
- YII数据库(创建(插入)记录示例)
- YII验证用法示例
- YII会话(Flash数据用法示例)
- Yii入口脚本基本概念和作用介绍
- org.apache.catalina.core.StandardWrapperValve invoke的解决办法
- @MapperScan使用
- 朝花夕拾Android Log篇
- APP偏移地址