在joomla1.5中创建简单的CRUD前端组件
我正在尝试将 php 应用程序转换为 joomla1.5 应用程序。我已经阅读了一些关于如何在 joomla1.5 中创建组件的文档,但是我迷失在创建简单 CRUD 前端组件的最佳方法中。
这是我的几个问题
1) 我应该使用 JTable 执行 CRUD 操作还是简单地使用模型并在方法中编写插入、更新、选择和删除脚本? 2)如果是JTable的话这个表类应该放在哪里
谢谢
I am trying to convert a php application to joomla1.5 app. I have read some docs on how to create components in joomla1.5 but however i am lost at the best approach to create a simple CRUD frontend Component.
Here are my few questions
1) Should i perform my CRUD operations using JTable or simply use models and write my insert,update,select and delete scripts in the methods?
2) Where should this table class be placed if JTable
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,在你继续之前的第一件事就是升级到 2.5。对于 60 天左右生命周期结束的软件来说,开发任何东西都是没有意义的。
接下来,任何与数据库相关的内容都应该放入模型中。在 Joomla 中,它应该非常简单,您准备好 MVC 教程了吗?从那开始,事情应该会弄清楚。
http://docs.joomla.org/Developing_a_Model-View-Controller_(MVC )_Component_for_Joomla!2.5
Ok, first thing before you get too far is to upgrade to 2.5. There is no point in developing anything for software that is reaching end of life in about 60 days.
Next, anything dealing with the database should be put in the model. In Joomla it should be pretty straight forward, have you ready the MVC tutorial? Start with that, it should clear things up.
http://docs.joomla.org/Developing_a_Model-View-Controller_(MVC)_Component_for_Joomla!2.5
是的,忘记 Joomla 1.5,然后使用这个脚手架工具
Yeah, forget Joomla 1.5 and then use this scaffolding tool