Momo

Results 11 issues of Momo

该 JS 文件中有 `defineReactive` 函数定义如下: ``` function defineReactive (obj, key, val) { const dep = new Dep(); Object.defineProperty(obj, key, { enumerable: true, configurable: true, get: function reactiveGetter () { dep.addSub(Dep.target);...

`flushSchedulerQueue()` 函数在遍历执行所有的 watcher 之后,应该要清空当前的 watcher 队列才对的,即 queue.length = 0,完整代码如下: ``` function flushSchedulerQueue () { let watcher, id; for (index = 0; index < queue.length; index++) { watcher = queue[index] id...

在 `/demo/static-server/util/file.js` 里面有这样的一段代码 : ``` let content = fs.readFileSync(filePath, 'binary' ) ``` 其实,这里需要对文件类型进行判断的,因为中文使用 `binary` 读取出来会是乱码的。个人觉得只有是图片、视频等才有必要使用 `binary` 读取。其他的用 `utf8` 便可。

我是做原生开发的,想使用 spy-debugger 来抓包原生app发出的请求,请问有什么办法?

issue 中有不少同学都反馈说证书安装不了,甚至还会打开乱七八糟的小网站。能否直接使用 IP+ 端口提供下载证书的地址呢?fiddler 就是这样的,比如我的 IP 是 10.255.206.118, fiddler 监听的端口是 8888 , 那么我直接打开 http://10.255.206.118:8888 就提供下载证书的地址了。如下: ![image](https://user-images.githubusercontent.com/12018876/70693997-8e6a7f80-1cf9-11ea-84bc-66a0cfb77235.png)

我的测试页面是用http访问的,里面有些第三方组件是https,但是小米手机无法安装证书,通过spy代理,导致第三方组件的资源加载失败,所以,有没有办法不拦截https?

Where is the saga in? Are you kiding me ??

I want to import it from cdn, for example `` , what is the cdn address ?

C 盘不知道不觉的就满了,排查了好久,才发现 `C:\Users\Administor\.anyproxy` 占用了 50G 的磁盘!求给了个解释! 有图有真相!删除这个目录花了好几十分钟。。。 ![image](https://user-images.githubusercontent.com/12018876/81462746-52274680-91e7-11ea-80db-17a02c4b1ede.png) 平时没有直接安装 `anyproxy` ,但是有使用 `spy-debugger`,而且基本每天都有用,因为它内置 了 `anyproxy` , 长年累月,导致了 C 盘存在巨量的缓存文件。 建议 每次启动 anyproxy 时,自动删除旧的缓存文件!

https://weatherpwa.baidu.com/ 该示例网站无法打开,是不是域名过期了?