我需要发出POST请求,我可以通过PHP工匠吗?
我使用GuzzleHttp
尝试了此操作,但收到错误:
ServerException in RequestException.php line 107:
Server error: `POST http://localhost/public/api/order` resulted in a `500 Internal Server Error` response:
<!DOCTYPE html>
<html>
<head>
<meta name="robots" content="noindex,nofollow" />
<style>
(truncated...)
那么,工匠可以吗?
答案 0 :(得分:2)
不确定我的方法效率如何,但这是我过去运行的一个例子。
进入项目目录。
输入things.onchange = function() {
alert(things[Key_Of_Value_That_Changed]);
};
创建要传递的参数数组:
php artisan tinker
$params = ['paramOne' => 'valueOne', 'paramTwo' => 'valueTwo'];
$request = Illuminate\Http\Request::create($uri, $method, $params);
$request = App\Http\Requests\MyExtendedRequest::create($uri, $methodType, $params);
是您要发送请求的位置
$uri
是要使用的HTTP方法的类型(GET,POST,PUT等)
$methodType
$controller = new App\Http\Controllers\MyController;