未验证 提交 81e76b4b 编写于 作者: 折腾笔记 提交者: GitHub

Merge pull request #1949 from ZhouWeiPeng/patch-1

Update use-weex.md
...@@ -413,7 +413,8 @@ BindingX类似一种强化版的css,运行性能高,但没有js那样足够 ...@@ -413,7 +413,8 @@ BindingX类似一种强化版的css,运行性能高,但没有js那样足够
}, function(res) { }, function(res) {
if (res.state === 'exit') { if (res.state === 'exit') {
Binding.unbind({ Binding.unbind({
token: main_binding token: main_binding.token,
eventType: 'timing'
}) })
} }
}); });
...@@ -436,7 +437,8 @@ BindingX类似一种强化版的css,运行性能高,但没有js那样足够 ...@@ -436,7 +437,8 @@ BindingX类似一种强化版的css,运行性能高,但没有js那样足够
}, function(res) { }, function(res) {
if (res.state === 'exit') { if (res.state === 'exit') {
Binding.unbind({ Binding.unbind({
token: btn_binding token: btn_binding.token,
eventType: 'timing'
}) })
} }
}) })
...@@ -462,7 +464,8 @@ BindingX类似一种强化版的css,运行性能高,但没有js那样足够 ...@@ -462,7 +464,8 @@ BindingX类似一种强化版的css,运行性能高,但没有js那样足够
}, function(res) { }, function(res) {
if (res.state === 'exit') { if (res.state === 'exit') {
Binding.unbind({ Binding.unbind({
token: main_binding token: main_binding.token,
eventType: 'timing'
}) })
} }
}); });
...@@ -485,7 +488,8 @@ BindingX类似一种强化版的css,运行性能高,但没有js那样足够 ...@@ -485,7 +488,8 @@ BindingX类似一种强化版的css,运行性能高,但没有js那样足够
}, function(res) { }, function(res) {
if (res.state === 'exit') { if (res.state === 'exit') {
Binding.unbind({ Binding.unbind({
token: btn_binding token: btn_binding.token,
eventType: 'timing'
}) })
} }
}) })
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册