在 Yii 中从 DB 生成模型?
有没有办法在 YII 中自动从 MySQL 数据库生成模型?
Is there a way to automatically generate models from a MySQL DB in YII?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法在 YII 中自动从 MySQL 数据库生成模型?
Is there a way to automatically generate models from a MySQL DB in YII?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可以使用 Gii 生成模型、视图和控制器 < a href="http://en.wikipedia.org/wiki/Create,_read,_update_and_delete" rel="noreferrer">CRUD 表操作。
您可以通过在配置文件中插入此代码来启用 Gii(从 by yiic 生成的代码中取消注释)。
然后浏览到 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).
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.