📅  最后修改于: 2020-10-16 07:32:30             🧑  作者: Mango
在Gii中创建模型-
255]
];
}
/**
* @inheritdoc
*/
public function attributeLabels() {
return [
'id' => 'ID',
'name' => 'Name',
'email' => 'Email',
];
}
}
?>
让我们为MyUser模型生成CRUD。
步骤1-打开CRUD Generator界面,填写表格。
步骤2-然后,单击“预览”按钮,然后单击“生成”。转到URL http:// localhost:8080 / index.php?r = my-user ,您将看到所有用户的列表。
步骤3-打开URL http:// localhost:8080 / index.php?r = my-user / create 。您应该看到用户创建表单。