weexteam / android-devtools-for-Apache-Weex

Remote debug for your native Android app using Chrome Developer Tools
Apache License 2.0
165 stars 54 forks source link

@JSMethod 不支持有 long/int 参数? #68

Closed noman798 closed 6 years ago

noman798 commented 6 years ago

image

@JSMethod(uiThread=false)
public void event_count(final long beginTime, JSCallback callback) {
    callback.invoke("test");
}

这样写,前端就不调用, 把参数beginTime去掉,就会调用。

noman798 commented 6 years ago

string 也不行,但是另外一个文件string可以, 好奇怪,附上几张调试的截图 image image

noman798 commented 6 years ago

解决了,原来是我的coffeescript多打了一个空格,把 xxx() 写成了 xxx ()