谷歌浏览器打不开Headers中的form data栏目怎么办?
哪个浏览器能打开Headers中的form data栏目? 发url edge可以啊谷歌浏览器应该也可以 import urllib.requestimport urllib.parse
import json
while True:
content = input('请输入需要翻译的内容:')
url = 'https://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule'
data = {}
data['i']=content#必须参数
data['doctype']= 'json'#必须参数
data= urllib.parse.urlencode(data).encode('utf-8')
response = urllib.request.urlopen(url,data)
html = response.read().decode('utf-8')
target = json.loads(html)
print('翻译结果:%s' % (target['translateResult']['tgt']))
页:
[1]