Joomla 中的 Ajax 数据库

发布于 2024-12-08 21:14:03 字数 410 浏览 0 评论 0原文

我如何在 Joomla 1.5 中实现 w3schools 上的这个脚本? Ajax 数据库

我尝试使其适用于 Joomla,但收到此错误:

Not Found

The requested URL /component/virtuemart/getcustomer.asp was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

谢谢。

How can I implement this script found on w3schools in Joomla 1.5? Ajax Database

I tried to make it work for Joomla and I get this error:

Not Found

The requested URL /component/virtuemart/getcustomer.asp was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Thank you.

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

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

发布评论

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

评论(1

帥小哥 2024-12-15 21:14:03

如果您检查底部引用的代码,您的服务器会抱怨找不到文件/component/virtuemart/getcustomer.asp

xmlhttp.open("GET","getcustomer.asp?q="+str,true);

因此您还需要添加服务器页面。然而,该示例中给出的代码(标题为“AJAX 服务器页面”)是 ASP 代码,因此它无法工作(除非您的服务器同时支持 ASP 和 PHP,这不太可能)。

简而言之,这个例子不适合你。您需要检查另一个示例:
http://www.w3schools.com/php/php_ajax_database.asp

您需要添加html 页面和php 页面。

Your server is complaining that it cannot find the file /component/virtuemart/getcustomer.asp, if you check the code it is referenced on the bottom:

xmlhttp.open("GET","getcustomer.asp?q="+str,true);

So you need to add the server page as well. However the code given in that example (under the title "The AJAX Server Page") is ASP code so it won't work(unless your server both supports ASP & PHP, very unlikely).

In short that example won't work for you. You need to check the other example:
http://www.w3schools.com/php/php_ajax_database.asp

You need to add both the html page & php page.

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