Authored by 王钱钧

Update README.md

... ... @@ -12,10 +12,13 @@ var params = { "action":"action", "arguments":{...} };
yohoInterface.triggerEvent(onSuccess, onFail, params);
```
* action
行为参数,例如`go.login`表示跳转至登陆页面
* yohoInterface
全局js对象,用于调用native代码,是所有与native通信的载体。
* triggerEvent
通过此方法,发起native通信请求。所有的native通信都由此方法
action :行为参数,代表此次调用的行为。例如`go.login`表示跳转至登陆页面
arguments:参数列表,用于传递参数
action|arguments|描述
---|---|---
go.tab|{"index":tab_index}|跳转至指定index的tab(从0开始)
... ...