收藏
回答

新建草稿箱为什么中文会乱码

回答关注问题邀请回答
收藏

1 个回答

  • Jerry黄翔徽
    Jerry黄翔徽
    05-24

    你需要encode一下你post的content。然后装成一个json文件传上去。我用的是python,给你看一下我的代码

    content = "中文测试"

    headers = {

            'Content-Type': 'application/json; charset=utf-8'

        }

      # The content you want to upload

    json_content = json.dumps(content, ensure_ascii=False)

    response = requests.post(url, data=json_content.encode('utf-8'), headers=headers)


    05-24
    有用
    回复
登录 后发表内容