if json_re[key] ==value: 发现错误,原来json_re[key]获取的是int型,而传入的value 是str 使用json_re[key].__str__() 转换成字符串进行比较即可