快乐的小萌新

Results 29 comments of 快乐的小萌新

我有个问题,怎么采用多规则,比如我又个字符,检测字符中包含有链接就能通过,或者是提供8个数字+字母也可以通过 这个或者条件怎么加?

请教一个问题,按照上面的课程,比如我要操作一个`color`,那么我就要有一个`color`标签,`reduce`代码我省略,引用部分如下: ``` .... ``` 如果我要再增加一个操作,例如`size`,引用部分就要再加一个如下: ``` .... ``` 如果我还要再加一个`shape `操作,那么就得继续往上增加标签。。。最后会随着增加的状态越多,标签层级越多,请问这种情况有解决办法吗?

> 开启 mfsu 报错,你们遇到了吗? [#66 ](https://github.com/ant-design/antd-dayjs-webpack-plugin/issues/66) 把cache全部删除,重新启动。。。。研究了一下午才发现发的。。。。

really sorry for the `+1` but @masoudltf did you fix this one? i'm getting this one too

I Compile't in ios,the problem: ``` ld: warning: meta method 'UIScrollViewContentInsetAdjustmentBehavior:' in category from /Users/liwei/Library/Developer/Xcode/DerivedData/youneiquan-aciuvwaxlskqxxbuqwlqmfskvnsg/Build/Products/Debug-iphoneos/React-Core/libReact-Core.a(RCTScrollViewManager.o) conflicts with same method from another category warning: the transform cache was reset. ```

I used `getAllCookies` to get cookies from wkwebview, like this https://github.com/react-native-webview/react-native-webview/issues/2067#issuecomment-887564850

生产环境下php的opcache启动不了啊 https://github.com/khs1994-docker/lnmp/issues/1233 无论是修改`php-ext-opcache.ini`,还是手动重启容器的`php-fpm`都不管用,使用的镜像 - khs1994/php:7.4.3-fpm-alpine - khs1994/php:8.1.1-s6-alpine 详细说明: https://github.com/khs1994-docker/lnmp/issues/1233 --- 已解决,需要配置环境变量

数据有的,除非你一开始就把默认挂载的数据卷删了 ``` $ docker volume inspect lnmp_mysql-data [ { "CreatedAt": "2022-07-28T14:28:51+08:00", "Driver": "local", "Labels": { "com.docker.compose.project": "lnmp", "com.docker.compose.version": "2.6.0", "com.docker.compose.volume": "mysql-data", "com.khs1994.lnmp": "true", "com.khs1994.lnmp.app.env": "development" }, "Mountpoint": "/var/lib/docker/volumes/lnmp_mysql-data/_data", "Name": "lnmp_mysql-data",...

即便不通过遍历,去操作也会同样报错,例如这样: ``` let list = ctrl.findByText(s1); list[0].parent().click(); ```

> > //在main.js设置全局的请求次数,请求的间隙 > > axios.defaults.retry = 4; > > axios.defaults.retryDelay = 1000; > > 设置完在error里打印error.config,看不到设置的retry和retryDelay,这是为什么 @ly2011 > > axios 0.19.0 已经不支持这种写法了,用0.18.0吧 0.19怎么做?