-
-
Notifications
You must be signed in to change notification settings - Fork 68
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
当以文件嵌套方式引用时 mock 数据并不会热更新 #107
Comments
@TheRaindrop 有工程可以测试吗? 不知道你使用的什么版本,目前我这里可以热更新。 |
@jaywcjlove 直接在 index.js 中引入对应的文件是没问题的,如果是再包装一层就无法更新数据了。 // 正常示例
const readingMock = require('./reading/user/index')
module.exports = {
...readingMock,
}
// 异常示例
const readingMock = require('./reading/index') // reading/index.js 与最外层的 index.js 相似,多包装一层
module.exports = {
...readingMock,
} |
m |
@jaywcjlove 求作者解答 我也遇到了 |
我把嵌套的这部分放到了index里,然后就可以了,问题是不是更新的时候清除缓存的方法不对 |
大佬,我也遇到同样的问题,要清理主路径引用时候的缓存,用这个 但是这样的话,估计会重载所有接口的数据,理论上局部处理更好?即只清楚被修改了的文件的路径 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
当我通过图片中展示的方法使用时,修改 mock 文件后,虽然终端上会提示文件已更新,但实际接口数据并没有变化;两种方式可以正常使用:
但每次更改数据后重启 mock 非常不便;将引用都放在根文件下并不能很好的组织整体 mock 系统,而且文件可读性变差。
所以这是个 bug 吗?还是说无支持计划?
The text was updated successfully, but these errors were encountered: