空白泡泡糖果

Results 9 comments of 空白泡泡糖果

请问roadhog和umi区别在哪里呢?该怎么选择? @sorrycc

想知道`Aws Lambda`怎么接入?看了下没有找到它的接入文档,然后`f.yml`的接入方式也只支持阿里云和腾讯云。

我一直以为是项目配置的问题,真恶心

+1,可能是这里格式化代码后导致的 ![image](https://user-images.githubusercontent.com/8522646/130570253-22e78457-61bd-4c19-a27c-11f0ceeb1027.png)

PanResponder不管上滑手势之后,体检就好多了 但是不太明白为什么作者要自己处理上滑的情况,然后在处理中,添加了下面的代码 ``` // 上滑的同时控制滚动条位置 this.scroll.scrollTo({x:0, y: gesture.dy * -1}); ``` 这个时候,上滑就感觉到卡顿。

@zengyimou 太久以前写的了,感觉应该是下面这段代码,使用 isVerticalGesture 方法进行了判断 ``` onShouldSetPanResponder(e, gesture) { if (!this.pullable || isUpGesture(gesture.dx, gesture.dy) || !isVerticalGesture(gesture.dx, gesture.dy)) { //不使用pullable,或非向上 或向下手势不响应 return false; } ... } ```

@lvwxx 再来个证书的中间人攻击方式讲解

I change all es5.js -> es6.js, delete isMounted method, and ActivityIndicatorIOS -> ActivityIndicator... then demo example_advanced is run. but when I try pull refresh. ... .. .

**方式一** ![image](https://user-images.githubusercontent.com/8522646/68110688-6cc2ef00-ff28-11e9-95f1-06c999d033c2.png) 新建一个 public 目录,把 base 和 submodule 打包之后的文件夹拷贝进来,添加对应的 project.config.js,最后配置下 devServer 就可以跑起来了 **方式二** 引用作者[前端微服务化进阶2 - 本地开发指南](https://alili.tech/archive/3xwbcv1w21i/)文章中的图,通过代理来访问模块资源 ![image](https://user-images.githubusercontent.com/8522646/68112322-06d86680-ff2c-11e9-865a-4768745425ce.png) ``` devServer: { proxy: { '/microfrontend-base-demo': { target: 'http://localhost:8980', pathRewrite: { '^/microfrontend-base-demo' :...