yii2 model对象怎么获取表字段
答案:3 悬赏:10 手机版
解决时间 2021-03-30 18:49
- 提问者网友:树红树绿
- 2021-03-30 11:51
yii2 model对象怎么获取表字段
最佳答案
- 五星知识达人网友:妄饮晩冬酒
- 2021-03-30 13:19
protected function loadTableSchema($name)
{
$table = new TableSchema;
$this->resolveTableNames($table, $name);
if ($this->findColumns($table)) {
$this->findConstraints($table);
return $table;
} else {
return null;
}
}
{
$table = new TableSchema;
$this->resolveTableNames($table, $name);
if ($this->findColumns($table)) {
$this->findConstraints($table);
return $table;
} else {
return null;
}
}
全部回答
- 1楼网友:雪起风沙痕
- 2021-03-30 15:25
protected function loadTableSchema($name)
{
$table = new TableSchema;
$this->resolveTableNames($table, $name);
if ($this->findColumns($table)) {
$this->findConstraints($table);
return $table;
} else {
return null;
}
}
{
$table = new TableSchema;
$this->resolveTableNames($table, $name);
if ($this->findColumns($table)) {
$this->findConstraints($table);
return $table;
} else {
return null;
}
}
- 2楼网友:孤独的牧羊人
- 2021-03-30 14:46
直接在Controller里面getModel(Model.class).save();即可 约定是表单提交的name为Model的className首字母小写.数据库属性名
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯