我正在尝试在python中使用curl
-d
选项读取传递的数据。
数据是JSON,我尝试使用
--data
'{"title":"foobar","body": "This body has both "double" and 'single' quotes"}'
request.get_json()
request.json.get('title')
...但我无法让它发挥作用
答案 0 :(得分:0)
使用正确的引用:您可以在单引号字符串中插入单引号,方法是结束它,放入转义引号,然后开始一个新引号。
以下是一个例子:
--data '{"title":"foobar","body": "This body has both "double" and '\''single'\'' quotes"}'