6

试图了解RESTPHP.

我在理解如何从 php 脚本发送put/时遇到问题。delete

在互联网上我只能找到如何确定已发送的 php 方法。

if($_SERVER['REQUEST_METHOD'] == 'DELETE')

但是如何发送这个DELETE方法呢?

通常,当我想从DB我的普通 html 表单中删除一些记录时,我会做什么,方法设置为post/get 并记录 db id,然后我按下提交按钮发送post/get表单。

如何创建这个提交发送delete/put方法?

4

4 回答 4

7

从 HTML 页面发送请求有两种常用方法,使用 GET 或 POST 之外的 http 方法。

#1:使用 html 表单发送 POST 请求,但包含一个隐藏的表单字段,告诉服务器将请求视为使用不同的方法。这是@xdazz 概述的方法。

<form method="post" action="my_resource.php">
  ...
  <input type="hidden" name="REQUEST_METHOD" value="PUT" />
<form>

在您的 PHP 脚本中"my_resource.php",您必须同时查看真正的请求方法提交的表单字段,以确定调用哪个逻辑:

/* my_resource.php */

$method = strtolower($_SERVER['REQUEST_METHOD']);
if( $method === 'post' && isset($_REQUEST['REQUEST_METHOD'])) {
    $tmp = strtolower((string)$_REQUEST['REQUEST_METHOD']);
    if( in_array( $tmp, array( 'put', 'delete', 'head', 'options' ))) {
        $method = $tmp;
    }
    unset($tmp);
}

// now, just run the logic that's appropriate for the requested method
switch( $method ) {
    case "get":
        // logic for GET here
        break;

    case "put":
        // logic for PUT here
        break;        

    case "post":
        // logic for POST here
        break;

    case "delete":
        // logic for DELETE here
        break;

    case "head":
        // logic for DELETE here
        break;

    case "options":
        // logic for DELETE here
        break;

    default:
        header('HTTP/1.0 501 Not Implemented');
        die();
}

注意:您可以将上述逻辑放入每个页面(或从每个页面调用)。另一种方法是构建代理脚本(例如"rest-form-proxy.php")。然后,您站点中的所有表单都将提交给代理,包括 request_method目标 url。代理将提取提供的信息,并使用正确请求的 http 方法将请求转发到所需的 url。

代理方法是在每个脚本中嵌入逻辑的绝佳替代方案。但是,如果您确实构建了代理,请务必检查请求的 URL,并禁止任何不指向您自己站点的 url。不进行此项检查将允许他人使用您的代理对其他网站发起恶意攻击;它还可能危及您网站上的安全和/或隐私。

--

#2:在您的 HTML 页面中使用 Javascript 来启动XMLHttpRequest。这是一种更复杂的方法,需要一点 javascript,但在某些情况下它可以更灵活。它允许您在不重新加载页面的情况下向服务器发送请求。它还允许您以多种不同格式发送数据(您不仅限于从 html 表单发送数据)。例如:

<button onclick="doSave()">Save</button>

<script>
    var myObject = {
       // ... some object properties that 
       // that you'll eventually want to save ...
    };

    function doSave() {
        var xhr = createxmlhttprequest();

        // initialize the request by specifying the method 
        // (ie: "get", "put", "post", "delete", etc.), and the
        // url (in this case, "my_resource.php").  The last param
        // should always be `true`.

        xhr.open("put", "my_resource.php", true);
        xhr.setRequestHeader('Content-Type', 'application/json');

        xhr.onreadystatechange = function() {
           if (xhr.readystate != 4) { return; }
           var serverresponse = xhr.responsetext;

           // ... this code runs when the response comes back
           // from the server.  you'll have to check for success
           // and handle the response document (if any).
        };

        // this initiates the request, sending the contents
        // of `myObject` as a JSON string.  

        xhr.send(JSON.stringify(myObject));

        // The request runs in the background
        // The `onreadystatechange` function above
        // detects and handles the completed response.
    }
</script>

XMLHttpRequest 比我在上面的基本示例中展示的要多得多。如果您选择此路线,请仔细研究。除其他事项外,请确保正确处理各种错误情况。跨浏览器兼容性也存在许多问题,其中许多问题可以通过使用中介来解决,例如jQuery 的 $.ajax() 函数

最后,我应该注意,上述两种方法并不相互排斥。很可能对某些请求使用表单,对其他请求使用 XMLHttpRequest,只要您构建服务器以便它可以处理任何一种请求(如上面的 #1 所示)。

于 2012-09-04T18:11:54.040 回答
4

HTML 表单只支持 GET 和 POST,因此在普通的 Web 应用程序中,您需要使用隐藏字段来指定请求方法,这是大多数框架所做的。

<form method="post" action="...">
  ...
  <input type="hidden" name="REQUEST_METHOD" value="PUT" />
<form>
于 2012-08-23T06:16:15.930 回答
3

如果您使用的是 Chrome,则可以使用Postman来测试您的 REST 服务。它允许发送任何类型的命令 - DELETE、PUT,还有 OPTIONS、PATCH 等。

在 Firefox 上,您可以使用RESTClient等。

于 2012-08-23T06:12:57.377 回答
3

通常的方法是使用cURL

$ch = curl_init('YOUR_URL');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE'); // curl_setopt($ch, CURLOPT_PUT, true); - for PUT
curl_setopt($ch, CURLOPT_POSTFIELDS, 'some_data');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);  // DO NOT RETURN HTTP HEADERS
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  // RETURN THE CONTENTS OF THE CALL
$result = curl_exec($ch);
于 2012-08-23T06:16:20.430 回答