項目數(shù)據(jù)庫字段名是中文,運用tp寫的時候 會報未支持的表達(dá)式
使用execute()方法解決此問題
$result=$row->execute('update table set a=?,小紅=?',[$params['a'],$params['小紅']]);
Db::commit();
} catch (ValidateException|PDOException|Exception $e) {
Db::rollback();
$this->error($e->getMessage());