wendux / DSBridge-IOS

:earth_asia: A modern cross-platform JavaScript bridge, through which you can invoke each other's functions synchronously or asynchronously between JavaScript and native.
1.96k stars 305 forks source link

怎么在react项目里import #73

Open ouwei-lee opened 5 years ago

ouwei-lee commented 5 years ago

当import bridge from 'dsbridge',报错 window is not defined;

emptyway commented 5 years ago
import bridge from 'dsbridge';

bridge.call("testAsync", "testAsync" (response) => {
  //TODO
});