MVC 架构中 AJAX 的 PHP 文件放在哪里?

发布于 2024-10-16 01:21:14 字数 208 浏览 2 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

香草可樂 2024-10-23 01:21:14

这与您在网站的任何其他页面上的操作方式没有什么不同。该页面的输出发送至 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.

旧城空念 2024-10-23 01:21:14

您应该从 AJAX 请求调用控制器。并且响应可能会使用不同的(例如 JSON)视图

You should call controller from AJAX request. And response will probably use different (for example JSON) view

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