这是我的代码:
public function client() {
App::uses('Xml', 'Utility');
$conditions = array('conditions' => array('title' => 'The title'));
App::uses('HttpSocket', 'Network/Http');
$http = new HttpSocket();
$xml_data = Xml::fromArray( $conditions, array('pretty'=>'true'));
$xml_string = $xml_data->asXML();
$response = $http->get('http://localhost/cakephp/xml/server', $xml_string);
//echo $response->body;
echo $response->code;
$this->set('xml', $response->body);
$this->set('x', $xml_string);
}
public function server() {
$this->layout=false;
$this->response->type('application/xml');
if($this->request->is('get')){
$conditionXml = Xml::toArray($this->request->input('Xml::build'));
//debug($conditionXml['conditions']);
$title = $conditionXml['conditions']['title'];
$posts = $this->Post->find('all', array('conditions' =>array('Post.title ='=>$title)));
$posts = Xml::fromArray(array('posts' => array('post' => $posts)), array('pretty'=>'true', 'format'=>'tags'));
$posts=$posts->asXML();
$this->set('posts', $posts );
}
}
如何在$xml_string
中获取server
?有什么想法吗?
答案 0 :(得分:0)
在$http->get
来电中,您将$xml_string
作为参数传递。您应该只需通过更改声明,就可以在server
函数中接收它:
public function server($xml_string) {
请注意,此处可能会考虑URL编码问题;我从来没有使用过这种设置。