我目前正在实施一个RESTful Web服务,它使用CodeIgniter和REST Phil Sturgeon来讨论XML。我现在坚持如何从HTTP PUT读取XML。这就是我所做的。
在客户端:
$(function(){
// Bind a click event to the 'ajax' object id
$("#new_user").click(function(evt){
// JavaScript needs totake over. So stop the browser from redirecting the page
evt.preventDefault();
var str = '<?xml version="1.0" encoding="UTF-8"?><xml><name>'+$("#txtname").val()+'</name><email>'+$("#txtemail").val()+'</email></xml>';
// Ajax request to get the data
$.ajax({
// URL from the link that was clicked on
url: $(this).attr("href"),
type: "put",
contentType: "application/xml",
processData: false,
data: str,
success: function(data, textStatus, jqXHR){
//alert('Successful AJAX request!');
//var items = parseXml(data);
//printXml(items);
},
// Failed to load request. This could be caused by any number of problems like server issues, bad links, etc.
error: function(jqXHR, textStatus, errorThrown){
alert('Oh no! A problem with the Ajax request!');
}
});
});
});
在服务器端:
public function users_put(){
$input = file_get_contents('php://input');
print_r($input);
}
它什么都没打印出来。上面的JavaScript代码和函数在HTTP POST中运行良好。
答案 0 :(得分:2)
本手册对此有很好的参考:http://php.net/manual/en/features.file-upload.put-method.php
如果不更改HTTP守护程序的设置,则无法处理PUT请求。
如果您正在使用Apache并且可以访问mod_rewrite,请在您输入的根文件夹中创建一个.htaccess文件,例如:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ handler.php?uri=$1 [L,QSA]
但细节取决于HTTP守护程序(Apache,IIS,lighttpd等)以及您使用的PHP框架。
答案 1 :(得分:0)
使用POST。您的申请必须确定请求是否为'PUT'。如果指定要修改的对象的id,则可以假定它是“PUT”请求。我不确定CodeIgniter如何处理这个,但我知道当指定id时,Zend Framework会自动路由到putAction。 (例如/ account / 5)