Cordova项目在php页面上给出了404

时间:2017-11-08 02:02:44

标签: javascript php html css cordova

使用我的本地测试我的cordova项目并在控制台中告诉我,即使它位于正确的位置,也找不到我的test.php页面。我知道这是正确的,因为我的CSS和js没有给我一个问题。知道这个问题吗? 我也试过GET&我也没有忘记安装

<plugin name="cordova-plugin-whitelist" spec="^1.3.2" />

见下我的目录:

  • WWW / index.html中
  • WWW / PHP / test.php的
  • WWW / CSS / index.css
  • WWW / JS / jquery3.2.js

的index.html

    

    <link rel="stylesheet" type="text/css" href="css/index.css">
    <title>Test</title>
    <script type="text/javascript" src="js/jquery3.2.js"></script>
    <script>
        function myFunction() 
        {
               alert("alert 1");   //test alert 1         
               $.ajax({
                type:'POST',
                url:'php/test.php',
                success:function(data) {
                    alert(data);
                }
            });
        }
    </script>
</head>
<body>
        <h1>Simple Form test</h1>   
             <button onclick="myFunction()">Try it</button>
</body>
</html>

test.php的

    <?php
       echo "alert 2";
    ?>

0 个答案:

没有答案