我试图访问我的本地主机,即 localhost/app 并试图在 json 中取回一些数据,这是 php 脚本
<?php
header('Access-Control-Allow-Origin: *');
//test if a post request came
if(isset($_POST)) {
//return a json request
$contactDetails = array(
"email" => "some@some.com",
"twitter" => "@example",
);
echo json_encode($contactDetails);
}
?>
这个 php 文件位于 index.php
我试图使用 localhost/app 页面访问此页面,但我在 firebug 中收到 301 错误,我不知道为什么,任何帮助表示赞赏
它可以在网络浏览器上运行,但当我尝试从其他地方请求信息时却不行