更新README、删除public下的index.html

This commit is contained in:
TOP糯米 2020-10-04 21:29:16 +08:00
parent 4ddfe71bfe
commit a3090fe52f
2 changed files with 14 additions and 14 deletions

View File

@ -494,8 +494,8 @@ $this->update([
``` ```
$this->update([ $this->update([
'username' => 'TOP糯米' 'username' => 'TOP糯米'
], function ($model) { ], function ($db) {
$model->where('id', 1); $db->where('id', 1);
}); });
``` ```
当然,也可以使用连贯操作 当然,也可以使用连贯操作
@ -518,8 +518,8 @@ $this->find(1);
``` ```
匿名函数 匿名函数
``` ```
$this->find(function ($model) { $this->find(function ($db) {
$model->where('id', 1); $db->where('id', 1);
}); });
``` ```
连贯操作 连贯操作
@ -545,8 +545,8 @@ $this->delete(1);
``` ```
匿名函数 匿名函数
``` ```
$this->delete(function () { $this->delete(function ($db) {
$model->where('id', 1); $db->where('id', 1);
}); });
``` ```
连贯操作 连贯操作
@ -580,9 +580,9 @@ $this->field('score')->avg();
``` ```
匿名函数中指定字段或条件 匿名函数中指定字段或条件
``` ```
$this->avg(function ($model) { $this->avg(function ($db) {
$model->where('score', '>=', 60); $db->where('score', '>=', 60);
$model->field('score'); $db->field('score');
}); });
``` ```
成功返回平均值失败抛出DatabaseException异常。 成功返回平均值失败抛出DatabaseException异常。
@ -674,8 +674,8 @@ $this->limit([0, 5])->select();
一般调用 一般调用
``` ```
$this->alias('t')->select(function ($model) { $this->alias('t')->select(function ($db) {
$model->join('score s', 's.uid = t.id', 'left'); $db->join('score s', 's.uid = t.id', 'left');
}); });
``` ```
同样也可以使用连贯操作 同样也可以使用连贯操作
@ -688,9 +688,9 @@ $this->alias('t')->select(function ($model) {
use app\home\model\Users; use app\home\model\Users;
$userModel = model(Users::class); $userModel = model(Users::class);
$res = $userModel->transaction(function ($model) { $res = $userModel->transaction(function ($db) {
$model->delete(4); $db->delete(4);
$model->update([ $db->update([
'id' => 3, 'id' => 3,
], 1); ], 1);
}); });

View File