我尝试在json上传递图像并存储在它上面但它无法传递给该服务器。我为此制作了代码,以便如何在json上传递该图像以及如何将该图像转换为字符串并存储在json上。
lst1 = [('a', 1), ('b', 2), ('c', 3)]
lst2 = [('b', 5), ('a', 4), ('c', 6)]
from collections import OrderedDict
d = OrderedDict(zip((tup[0] for tup in lst1), lst1))
for k,v in lst2:
d[k] = d[k] + (v,)
print(d.values())
[('a', 1, 4), ('b', 2, 5), ('c', 3, 6)]
答案 0 :(得分:2)
NSString *string = [NSString stringWithFormat:@"%@%@%@", @"Content-Disposition: form-data; name=\"profile_pic\"; filename=\"", imageName, @".jpg\"\r\n\""];
答案 1 :(得分:0)
NSData *data = UIImageJPEGRepresentation(images, 1.0);
NSString *StrCoverImageData = [data base64EncodedStringWithOptions:0];
使用此字符串通过服务器发送。