1

我正在实现一个客户端服务器 Android 应用程序。使用 POST 请求,我开始在服务器端解析从客户端发送的 Json 对象。

我在服务器上得到的是:

{"text":"cccc","type":1}

在 json.load() 方法(传递我收到的内容)之后,我得到:

{u'type': 1, u'text': u'cccc'}

如果我尝试使用以下方法获取值:

 self.value = frase['type']
 self.text = frase['text']

我收到一个错误:

 string indices must be integers

我哪里错了?先谢谢FB

4

0 回答 0