在 Yii 中从 DB 生成模型?

发布于 2024-11-05 05:08:42 字数 37 浏览 0 评论 0原文

有没有办法在 YII 中自动从 MySQL 数据库生成模型?

Is there a way to automatically generate models from a MySQL DB in YII?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

囍孤女 2024-11-12 05:08:42

您可以使用 Gii 生成模型、视图和控制器 < a href="http://en.wikipedia.org/wiki/Create,_read,_update_and_delete" rel="noreferrer">CRUD 表操作。

您可以通过在配置文件中插入此代码来启用 Gii(从 by yiic 生成的代码中取消注释)。

'modules'=>array(
        'gii'=>array(
            'class'=>'system.gii.GiiModule',
            'password'=>'****',
            'ipFilters'=>false, // Not recommended, but easy.
      ),
),

然后浏览到 example.com/index.php?r=gii。登录 Gii,然后从那里开始流程。

当询问模型名称时,输入 * 为数据库中的所有表创建模型。

You can use Gii to generate models, views and controllers for CRUD operations from tables.

You can enable Gii by inserting this code in your configuration file (uncomment it from the by yiic generated code).

'modules'=>array(
        'gii'=>array(
            'class'=>'system.gii.GiiModule',
            'password'=>'****',
            'ipFilters'=>false, // Not recommended, but easy.
      ),
),

Then browse to example.com/index.php?r=gii. Login to Gii and from there the process speaks from itself.

When asked for the Model name enter * to create models for all tables in the database.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文