首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > Apache >

Apache 二 + PHP + REST支持例子

2012-12-28 
Apache 2 + PHP + REST支持例子之前一直想看看rest风格的URI的实现,但是对 PUT DELETE方法实在是没有使用

Apache 2 + PHP + REST支持例子

之前一直想看看rest风格的URI的实现,但是对 PUT DELETE方法实在是没有使用过,今天测试了下 记录如下:

?

$('#sidebar ul li a:not(href)').click(function(){$.ajax({type: 'DELETE' ,url: '{echo(url('App_Accounts','rest'))}' ,data: {username: 'iamsese' ,password: 'sfsfdsfdse'}});});

?后台代码:

?

function actionRest(){//$data = '' ;//$putdata = fopen("php://input","r");//while (!feof($putdata))//        {//            $data .= fread($putdata,1024);//        }//        fclose($putdata);$data = file_get_contents("php://input");dump($data,$_SERVER['REQUEST_METHOD']);}

?

不使用

"php://input"

?就取不到 参数 ,这里记录下 哈哈 基本rest也就能实现了

客户端:<script type="text/javascript">function test(data) {alert(data);}</script><script type="text/javascript" src="http://******.aspx?callback=test"></script>服务端:var fun = Request["callback"];Response.Write(fun+"("你好世界")");

PHP例子

// test jsonp//$.ajax({//url: 'http://localhost/jsonp.php' ,//dataType: 'jsonp' ,//type: 'GET' ,//success: function(data){//console.log(data);//}//});jQuery.getJSON('http://localhost/jsonp.php?callback=?', function(data){            alert(data);        });


<?php$jsonp = array(array('user'=>'jack','roles'=>'admin,developer'),array('user'=>'wei','roles'=>'developer'),array('user'=>'grace','roles'=>'admin'),);$jsondata = json_encode($jsonp);echo $_GET['callback'].'('.$jsondata.')';


3 楼 vb2005xu 2010-12-08   引用jQuery.parseJSON方法的使用
//console.log(jQuery.parseJSON('{"error":1,"success":12,"google":666}'))

热点排行