-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
支持运行时插件,以及通过 app.js 扩展运行时的配置 #1051
Comments
插件里注册一个运行时插件就好,运行时会和
|
完美啊! |
很不错!是不是把移除插件的逻辑也顺便实现一下,当遇到模式转换相关的用例时会方便管理插件。 |
有and design pro项目自定义插件的完整demo么,新手看得一脸懵圈 |
@yanglibai and design pro 项目自定义插件指什么? |
就是上面举例的那个运行时插件,在and design pro 里面要怎么用,注册插件的代码要写在哪 |
这个还没实现,实现后会有文档的。 |
有实现动态菜单吗? |
在and design pro 中使用ant-design/ant-design-pro#2928 |
这个render里面能访问model吗 |
请问,如何在 render 中访问到全局 model 中的state,比如,我有一个 user.js 全局model,其中有用户信息的 state,我想每次渲染页面前判断是否存在这个 state,再去渲染页面。 因为页面只要一刷新,model 中的 state 就会初始化了,也就拿不到用户的信息。 |
我也想知道,怎么样在运行时使用dispatch修改全局数据 |
cra中这样写
umi中要怎么实现呢? 下面的写法貌似不对
|
先看下用户怎么用
e.g.
src/app.js
,可以做什么?
实现
Notes
src/app.js
配置 umi 运行时内置的 key
先实现一个简单的运行时插件机制
注册插件
入口文件,
在各场景的应用
比如 patchRoutes 的实现,
比如自定义 render,
比如自定义 rootContainer,
比如 dva 的扩展配置,
比如 dva 自定义 rootContainer,
plugin.js
runtime.js
The text was updated successfully, but these errors were encountered: