我正在尝试使用Goutte提交表单。该表单使用jQuery将表单序列化为json并发布到url。提交后,它会更新浏览器的cookie。
我要么:
我尝试使用Goutte的addContent
方法创建表单然后发布,但它不是作为JSON发送的,只是一个常规查询字符串。
答案 0 :(得分:6)
这是一个类方法,可以作为Goutte的JSON和URLencoding的示例。
use Goutte\Client;
class a
{
/**
* abstract the request content-type behind one single method,
* since Goutte does not natively support this
* @param string $method HTTP method (GET/POST/PUT..)
* @param string $url URL to load
* @param string $parameters HTTP parameters (POST, etc) to be sent URLencoded
* or in JSON format.
* @return \Symfony\Component\BrowserKit\Response
*/
protected function makeRequest($method, $url, $parameters) {
$client = new Client();
if ($this->requestFormat == 'json') {
return $client->request($method, $url, array(), array(), array('HTTP_CONTENT_TYPE' => 'application/json'), json_encode($parameters));
} else {
return $client->request($method, $url, $parameters);
}
}
}
答案 1 :(得分:3)
要在Goutte中设置Cookie,请尝试以下操作:
$client->getCookieJar()->set($cookie);
我认为$ cookie的类型为Symfony\Component\BrowserKit\Cookie
,因此,如果您检查文档,则应该能够以呼叫所需的形式发送Cookie。
如果您希望通过POST加载资源,请尝试以下操作:
$client->request('post', $url, $params);
我希望$params
是要提交给JSON操作的值的关联数组。