this是加载脚本的类,脚本可调用以下方法:

1.getDialogSettings

this:getDialogSettings();

无参数,返回DialogSettings

2.getValue

this:getValue(String);

传入String类型参数,返回脚本储存key为传入参数对应的值

3.setValue

this:setValue(String , String);

传入两个String类型,第一个参数为key,第二个参数为value 。返回为 boolean 类型。

4.getNfcUtils

this:getNfcUtils();

返回NfcUtils

5.updateViews

this:updateViews();

通知软件更新显示

6.getTag

this:getTag();

返回当前Tag,类型为 android.nfc.Tag

7.getHttpUtils

this:getHttpUtils();

返回 HttpUtils

8.getStringMap

this:getStringMap();

返回 HashMap, String> , 与 java.util.HashMap 用法相同

9.getJsonUtils

this:getJsonUtils();

返回 JsonUtils

10.getLocData

this:getLocData(String);

返回储存在本地的数据,传入String类型的key

11.setLocData

this:setLocData(String , String);

传入两个String,返回为 boolean 类型 , 以key-value的形式储存本地数据