1 - 如何使用带有 RestKit 客户端的 NSMutableDictionary 包含图片?
我的服务器在下面的代码中从 NSMutableDictionary 接收数据。
NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init];
[dictionary setObject:usernameTextfield.text forKey:@"username"];
[client put:@"/main/insert" params:params delegate:self];
但是如何同时附加图像?
另一方面,RKParams 在我的服务器端对我不起作用。
RKParams *params=[[RKParams alloc]init];
imageData = UIImagePNGRepresentation(imageField.image);
[params setData:imageData MIMEType:@"image/png" forParam:@"image"];
休息服务器代码:
public function insert_put()
{
$username = $this->put('username');
$this->model->insertPost($username);
//Question number 2.
$data['success'] = 'added successfully';
$this->response($data, 200);
}
2 - 我如何从我的服务器(php)接收它?我正在使用 put 选项。