Results 14 comments of Faure Wu

@18613109040 为什么需要这样呢?直接dispatcher.flights.getBannerAction({ name: 1 })有什么问题么?

@cenbiq 对于原生小程序Component可以使用自带的[数据监听器](https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/observer.html)

@wooline 可以参考这个来:https://www.jianshu.com/p/5caf23acad51 其中`devTools({ hostname: 'localhost', port: 5678, secure: false })`在zoro的注册方法 ```js const app = zoro({ extraEnhancers: [ devTools({ hostname: 'localhost', port: 5678, secure: false }), ], }) ``` 这个方法是否可行我没试过

@Leadrive 我这里弄了一个zoro结合taro3的demo,你看是否可以使用,我本地环境没有react-native,没什么时间搞环境,目前只在weapp+h5环境中跑过,react-native我理解没问题的话,zoro是不需要有其他适配的,taro环境适配好rn就可以,你可以先参考下,试试么,感谢

https://github.com/FaureWu/taro3.0-zoro-demo.git

@cmzz 你改动过么?还是直接跑的,查看下config/config.js文件有没有呢,我直接clone然后yarn mock:weapp没有报你的错误呢

[zoro](https://github.com/FaureWu/zoro.git)类似dva-core使用方式的redux框架

> with ModuleFederationPlugin you can use import statements syntax. if you are using pure MF runtime to register modules and load modules, you must use loadRemote instead of import statements...

> This doesn't meet my needs. I don't want to register the remote at build time; instead, I want to register it at runtime, while still being able to use...

> you can use a runtime plugin to rewrite the requests as they happen. > > https://module-federation.io/plugin/dev/index.html > > https://github.com/module-federation/module-federation-examples/tree/master/runtime-plugins > > using the hooks you could read the requested...