Albert 理斯特
Albert 理斯特
各个子项目的文档有了吗,我翻了一下 README.md 都是空的
看代码已经支持这个功能了? https://github.com/midwayjs/cli/blob/master/packages/cli-plugin-package/src/index.ts#L431 ```bash $ midway-bin package --skipInstallDep ```
简单回答:不能。 我目前的做法是: 1. 在 f.yml 的 customDomain 设置一个 fake.example.com,用来避免生成临时域名,这个绑定的 path 会被覆盖来覆盖去,不要管它 2. 在阿里云控制带的域名管理那里设置真的 real.example.com,手动设置 path 匹配和绑定,由于接口一般不会改,所以手工设置一次就好了 效果就是每次 npm run deploy 会把最新的代码部署,并把 fake.example.com 乱指,不要管它,real.example.com 还是对的,因为没人会去动它
谁在使用 https://github.com/yanhaijing/zepto.fullpage 有很多 demo 啊
你的意思是建议从 GitHub 手动下载放到本地某个待编译的文件夹里?
> Angular 1.4或者Vue之类的成熟框架.... 虽然我也在用 vue,但是不敢这么说啊
From my line by line debug experience: 1. you have to set `flowable.eventregistry.enabled=false` in `application.properties` 2. you have to set `configuration.setDisableIdmEngine(true);` in `@Bean public SpringProcessEngineConfiguration processEngineConfiguration` because there is no...
I'd suggest Flask-Restful.
真的是为了避免影响大家的判断么。。。
折腾了一周,MVP 跑通了,来分享一下我的方案: 1. 用 zustand 替换 dva 的 redux 部分 2. 用 umi/clientLoader 替换 dva 的 subscription 部分 主要对应的理由是: 1. 需要和 redux 一样的 global state 的概念,也有在一些分享中被提到叫做 `server cache state`,即后端数据库数据的本地缓存;与之对应的是 `ui...