0
我有一個反應母語NativeModule用單一方法傳遞null參數傳遞給本機模塊的陣營,原生的Android
@ReactMethod
public void sendEvent(String message, Integer code) {
...
}
我希望能夠通過null
在JS的code
說法,但是當我做例如
TestModule.sendEvent('this is a test', null);
我得到
com.facebook.react.bridge.NativeArgumentsParseException: TypeError: expected dynamic type `double', but had type `null' (constructing arguments for TestModule.sendEvent at argument index 1)
如何null
作爲參數傳遞?