Rumah > Soal Jawab > teks badan
tp6, tentukan kaedah pengubahsuaian baharu dalam model
Dalam tp51, terus gunakan self::save() untuk menunjukkan penambahan baharu
Tetapi dalam tp6, gunakan self::save(), ralat dilaporkan, ia bukan kaedah statik
Kaedah bukan statik thinkModel::save() tidak boleh dipanggil secara statik
Jika anda menggunakan $this, ralat akan dilaporkan
Menggunakan $this apabila tidak dalam konteks objek
Jadi bagaimana anda boleh memanggil kaedah induk dalam model untuk tambahkan?
<?php namespace app\common\model; use think\Model; use think\exception\PDOException; class Common extends Model { // protected static function init(): void { } /** * 添加修改 **/ public static function addEdit($data = []){ $type = isset($data['id']) ? ($data['id']>0 ? 2 : 1) : 1; //?? ?: try { if($type == 2){ //更新 $row = self::update($data); }else{ $row = self::save($data); //$row = $this->save($data); } if($row !==false){ return ['status'=>1,'msg'=>'操作成功', 'data' => '' ]; }else{ return ['status'=>0,'msg'=>'操作失败', 'data' => '' ]; } } catch (PDOException $e) { return ['status'=>0,'msg'=>$e->getMessage()]; } }
朝游东海2019-04-24 11:07:32
Selesai, masalah saya
<?php namespace app\common\model; use think\Model; use think\exception\PDOException; class Common extends Model { // protected static function init(): void { } /** * 添加修改 **/ public function addEdit(array $data = []){ //去掉static静态声明 $type = isset($data['id']) ? ($data['id']>0 ? 2 : 1) : 1; //?? ?: try { if($type == 2){ //更新 $row = self::update($data); }else{ $row = $this->save($data); } if($row !==false){ return ['status'=>1,'msg'=>'操作成功', 'data' => '' ]; }else{ return ['status'=>0,'msg'=>'操作失败', 'data' => '' ]; } } catch (PDOException $e) { return ['status'=>0,'msg'=>$e->getMessage()]; } }
boleh memanggil kaedah save(), tetapi
ralat berlaku lagi
array_merge(): Argumen #1 bukan array
$field = array_merge($this->field , $append);
Cetak $this->field
eq true
???
klik kanan, tutup semua,
Kembali selepas keluaran rasmi