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

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

报告相同问题?

悬赏问题

  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮