douju1365 2018-09-06 21:50
浏览 163
已采纳

xmlHttp responseText返回php文件而不是运行php脚本的结果

I have the following programs, test.html and test.php

test.html:

<head>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.6/react.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.6/react-dom.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.js"></script>
</head>

<body>
<div id="root"></div>
<script type="text/babel">


class NameForm extends React.Component {


    componentDidMount(){
        var xmlHttp = new XMLHttpRequest();
        xmlHttp.onreadystatechange = function() {
            if (xmlHttp.readyState == 4 && xmlHttp.status == 200){
                console.log(xmlHttp.responseText)
            }
        }.bind(this)

        xmlHttp.open("GET","test.php",true)
        xmlHttp.send(null)
        event.preventDefault()
    }


    render() {
        return (<div/>)
    }

}

ReactDOM.render(
    <NameForm />,
    document.getElementById('root')
);


</script>
</body>

test.php

<?php
echo "this is a test"
?>

When I open the html page I get the content of the php script written in the console rather than the result of running the php script as I was expecting, that is to say, in the console I get this:

<?php
echo "this is a test"
?>

rather than this:

this is a test

Why is this? How can I fix it? Thanks,

Also in case this is relavent I am running this locally using python SimpleHTTPServer

  • 写回答

1条回答 默认 最新

  • duanchou6534 2018-09-06 22:18
    关注

    PHP is a server sided language so your browser can not parse it unlike html , Javascript or ... that your browser can run them.

    So you need a server to run PHP. (Installing PHP)

    On windows you can use Xampp or Wamp to have it locally easily and run your codes. And make your computer your server to test your codes...

    Another way is to install PHP manually and run it.

    But if you want to have real server and host sites, it is more complicated ...

    PS:if you want to just test your codes without change your computers configuration there are free hostings you can use them ...

    You can read more at : What you need to get started with PHP

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵