Post 请求ES数据库错误:json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

Post 请求ES数据库错误:json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

排除发现是需要检索的字符串包含(()) 等括号字符。导致后面检索式检索出错。

# 错误检索字符串
a = '(Hi)hello '
# 解决1 去掉括号
a = 'Hi hello'
# 解决2 两边加单引号
a = '\'' + a + '\''

.
.
.

你可能感兴趣的:(BUG,数据库,json)