Haoliang Wu

Results 17 comments of Haoliang Wu

这个问题按我的理解的话,不应该是 `formily` 来负责处理,因为这属于渲染层的逻辑,渲染层逻辑具有多样性,可能是在一个大页面中渲染(你这里的情况),也可能是按照 `FormStep` 或者 `FormTabs` 这种 layout 渲染,如果是后者的话,这个 api 就不够通用,自然不应属于 `formily` 应该负责的范畴。 这个需求在业务层其实非常好实现,只需要将 `field.validate` 按不同的 mvvm 框架封装一下即可。

I met a similar issue like it, anyway, I use `vite` for bundle building. ![image](https://user-images.githubusercontent.com/6328186/172976247-7c5e34af-7bc7-4f65-810a-baf0fdeb35bb.png) the `vite build` works fine on win10 but breaks on ubuntu.

I met the similar problem and I think the most easiest workaround is using the thinking of PR of #295. Just wrapped the core business of #295 into an ng...

@Tao-Quixote ``console.log('%c', f);``这个不是重点,主要是为了使打印出的文字变成透明,重点是``f = function(){}``,因为 devTool 在打印函数对象时会调用它们的 `toString` 方法,这里如果换成 ``f={}`` 就不可以了,大概是这样。

@Tao-Quixote 没啊,我这里包不包含``string substitutions``都会重复执行啊,录一个gif: ![record](https://user-images.githubusercontent.com/6328186/39870886-812bd46e-5495-11e8-87be-dcac69bca0e6.gif)

@Tao-Quixote 嗯,好像是这么一回事,你可以试试@迷渡大佬现身说法一下,哈哈

使用 `rescripts` 或者 `react-scripts-rewired` 或者 `eject` 后把所有 `hot reload` 相关配置消除就可以了,我这里用用的是 `react-scripts-rewired`, 亲测可行: ``` module.exports = { webpack: (config) => { config.entry = config.entry.filter( (e) => !e.includes('webpackHotDevClient') ); config.output.library = `${name}-[name]`;...

I have also encountered this issue in a recent R&D project and am curious about how to add or remove an NFToken to/from a specific NFTokenPage based on the official...

@beefchimi just the revision definition file according to tips of last PR, I resend the PR because the codebase of last one is not same as current one. But I...

hi @Albejr , I try to reproduce issue with the following code: ``` this.service.showGroup('zone1') this.service.showGroup('zone2') setTimeout(() => { this.service.hideGroup('zone1') }, 1000) setTimeout(() => { this.service.hideGroup('zone2') }, 3000) ``` but everything...