我尝试提出 PUT 请求,但我不能。我的表格。
<form method="put" action="http://localhost/index.php/book">
<input type="text" name="bookName" />
<input type="submit" value="Send"/>
</form>
我的控制器
<?php
require(APPPATH.'libraries/REST_Controller.php');
class Book extends REST_Controller {
function index_put(){
echo $this->put('bookName');
}
}
?>
问题是什么都不显示。