MVC 架构中 AJAX 的 PHP 文件放在哪里?
我正在使用 MVC 架构创建网站,当我遇到 AJAX 时,我感到很惊讶。我使用 AJAX 创建简单的反馈表单。当用户提交它时,有一个名为 PHP 文件,该文件使用“数据库”类将给定值插入到数据库中。
该 PHP 文件应该放在哪里(这样它就会以某种方式分层)?
我尝试将其放入 /models/ajax/file.php 中,但在我看来这很愚蠢,当然,找不到“数据库”类。
I'm creating site using MVC architecture and get stunned when I came to AJAX. I create simple feedback form with AJAX. When user submit it there is called PHP file that inserts given values into the database using 'database' class.
Where to put that PHP file (so it would be somehow hierarchic)?
I tried to put it in /models/ajax/file.php, but it seems to me stupid and, of course, 'database' class wasn't found.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这与您在网站的任何其他页面上的操作方式没有什么不同。该页面的输出发送至 AJAX 请求而不是直接发送至 Web 浏览器,这是无关紧要的。它的逻辑位于控制器中,数据库代码位于模型层中,其响应位于视图中。
It's no different than how you do any other page of your site. That this page's output goes to an AJAX request instead of directly to a web browser is irrelevant. Its logic goes in the controller, the database code goes in the model layer, its response goes in a view.
您应该从 AJAX 请求调用控制器。并且响应可能会使用不同的(例如 JSON)视图
You should call controller from AJAX request. And response will probably use different (for example JSON) view