如何使用TinyDB执行数学运算? (App Inventor 2)

时间:2015-02-08 20:17:44

标签: app-inventor

我正在尝试使用TinyDB将值存储在一个屏幕上并将其显示在另一个屏幕上。在第二个屏幕上,我想在第一个屏幕上添加1与TinyDB存储的数字。但是,当我尝试这样做时,没有任何反应。我做错了什么?

这是我的两个屏幕的代码。

屏蔽1
enter image description here

画面2 enter image description here

1 个答案:

答案 0 :(得分:0)

您已将Screen2.Initialize中的可用计算机加载到标签computersAvail.Text中。因此,在Button1.Click事件中,首先像这样添加1

set computersAvail.Text to get computersAvail.Text + 1

并将更新的可用计算机存储在TinyDB中,然后使用以下块

TinyDB.StoreValue "Computers"
                  get computersAvail.Text

顺便说一句。有助于首先do the tutorials学习App Inventor的基础知识...
另见this link for "the lost souls" ...