|
60精币
host="127.0.0.1"target_file = open(r'match_target.png', 'rb').read()
bg_file = open(r'match_bg.png', 'rb').read()
api_url = f"{host}/slide/match/file"
resp = requests.post(api_url, files={'target_img': target_file, 'bg_img': bg_file})
print(f"{api_url=}, {resp.text=}")
我看着是打开这两张图片,然后以字节集提交的,但是他files={'target_img': target_file, 'bg_img': bg_file}) 这里却有索引'target_img'不是文本么,是什么意思,来大会py的翻译一下 |
最佳答案
查看完整内容
搜狗post上传图片
https://bbs.125.la/forum.php?mod=viewthread&tid=14226157
(出处: 精易论坛)
就是这样子!这些我已经不太感兴趣了,看不懂就抓个包,看不懂就抓个包,看不懂就抓个包,重要事情说三遍~
|