AJAX GET返回PHP脚本(AJAX GET returns the php script)

2019-09-29 06:21发布

我有一个返回结果整个PHP脚本一个非常简单的Hello World Ajax的PHP的例子。 下面的代码:

客户代码:

   $.ajax({
        type: "GET",
        contentType: "text",
        url: "hello-world.php",
        success: function(data){
            $("#myDiv").text(data);
            console.log(data);
        }

    });

服务器代码:

<?php
// A simple web site in Cloud9 that runs through Apache
// Press the 'Run' button on the top to start the web server,
// then click the URL that is emitted to the Output tab of the console

echo 'Hello world!';

?>

这里的控制台日志:

<?php
// A simple web site in Cloud9 that runs through Apache
// Press the 'Run' button on the top to start the web server,
// then click the URL that is emitted to the Output tab of the console

echo 'Hello world!';

?> 

谢谢!

Answer 1:

按照@DavidRiccitelli - 它看起来像你没有运行PHP和Apache是​​刚刚煮好的文件,而不是将它传递给PHP执行。

尝试WAMP的服务器XAMPP的捆绑服务器软件包在Windows 甲基苯丙胺的MacOSX的ETX



Answer 2:

机会是你的PHP不被理解,因而被返回原始的HTML。

检查这里进行了类似的问题。



文章来源: AJAX GET returns the php script