Gii - Tạo mô hình
Để tạo Mô hình trong Gii -
<?php
namespace app\models;
use app\components\UppercaseBehavior;
use Yii;
/**
* This is the model class for table "user".
*
* @property integer $id * @property string $name
* @property string $email
*/
class MyUser extends \yii\db\ActiveRecord {
/**
* @inheritdoc
*/
public static function tableName() {
return 'user';
}
/**
* @inheritdoc
*/
public function rules() {
return [
[['name', 'email'], 'string', 'max' => 255]
];
}
/**
* @inheritdoc
*/
public function attributeLabels() {
return [
'id' => 'ID',
'name' => 'Name',
'email' => 'Email',
];
}
}
?>
Tạo CRUD
Hãy để chúng tôi tạo CRUD cho mô hình MyUser.
Step 1 - Mở giao diện tạo CRUD, điền thông tin vào biểu mẫu.
Step 2- Sau đó, nhấp vào nút “Xem trước” và “Tạo”. Đi tới URLhttp://localhost:8080/index.php?r=my-user, bạn sẽ thấy danh sách tất cả người dùng.
Step 3 - Mở URL http://localhost:8080/index.php?r=my-user/create. Bạn sẽ thấy một người dùng tạo biểu mẫu.