如何在更新时订阅json.store?

时间:2016-12-05 19:51:04

标签: android python json kivy

我有一个在ubuntu和android中运行的kivy应用程序,这个应用程序会询问一些值,这些值存储在json.store中。但如果它已经在此json.store中有其他值,则此值将会累积。这样,如果我存储了5并且我放置了10,那么我将拥有510。我保存值的json函数是:

store.put('carro', velocidade=carro0, tempo=carro1)

其中carro0carro1是条目。每次收到新条目时,我都想订阅json.store。我没有在这里显示我的代码,因为唯一的纯粹的python"该应用程序是这一行。非常感谢大家,对不起,如果我有一些英语错误。

度过愉快的一天

1 个答案:

答案 0 :(得分:0)

对不起,因为这个问题只是我在kivy显示屏上“显示”的错误方式。我在做:

car.ids.a0.text += store.get('tempo0')['velocidade']

而不是:

car.ids.a0.text = store.get('tempo0')['velocidade']

其中car分别是screena0TextInput ID。我很抱歉这篇不必要的帖子。