快乐的小萌新

Results 13 issues of 快乐的小萌新

![Alt text](http://images.cnblogs.com/cnblogs_com/aiyuchen/437722/o_Snip20140607_3.png)

I used RN 0.60.5, and got the following error: >ExceptionsManager.js:94 RNCookieManagerIOS.getAll was called with 1 arguments but expects 0 arguments. If you haven't changed this method yourself, this usually means...

在`docker-production.online.yml`中我启用两个`php`服务`php7`和`php8`,并启用一个`nginx`服务,将`nginx`服务依赖于`php`: ``` depends_on: - php7 - php8 ``` 在启动服务的时候`$ ./lnmp-docker swarm-deploy`,有的时候并非按照顺序执行,就会造成启动服务失败 ``` Creating network lnmp_backend Creating network lnmp_frontend ... Creating service lnmp_nginx Creating service lnmp_redis Creating service lnmp_php8 Creating service...

the `bower.json` file was lost `js-xlsx` at the `dependencies`

help wanted
confirmed

``` npm run init > [email protected] init /Library/WebServer/Documents/ment/iview/iview-project > webpack --progress --config webpack.dev.config.js 11% building modules 12/18 modules 6 active .../ment/iview/iview-project/src/app.vueContainer#eachAtRule is deprecated. Use Container#walkAtRules instead. Container#eachRule is deprecated. Use...

示例代码: ``` let list = ctrl.findByText(s1); list.forEach(function(tv){ }); ``` 执行报错: > Cannot convert function to interface java.util.function.Consumer since it contains methods with different names (6242c214456a8235d7ca458d.js#207) 和`autojs`一样存在问题:https://github.com/hyb1996/Auto.js/issues/664 # 请问怎么解决?

use by `compose update` ``` Problem 1 - ahsankhatri/wordpress-auth-provider[v2.0.0, ..., v2.x-dev] require php ^7.1 -> your php version (8.0.3) does not satisfy that requirement. - Root composer.json requires ahsankhatri/wordpress-auth-provider ^2.0...

情况如下: 1.有A、B两个页面 2.A页面通过ajax传入数据进来 3.切换B页面(通过router来实现),再换回A页面,之前加载的AJAS数据没有了。请问怎么解决?

I have an idea for this project. ## Why? For example, in a multi-person collaboration, an item, or multiple items, need to be annotated so that other colleagues can update...

enhancement

建议增加滑动周期后触发事件 **问题举例:** 我从8月30号滑到了8月24号,组件会自动激活24号,但是你要获取24号的数据,就要人为再手动点一次 **改善建议:** 我从8月30号滑到了8月24号,组件会自动激活24号,触发一个滑动后的事件,返回滑动后激活的日期,不需要二次人为点击 我这边跑业务流程,就简单在源码里修改,实现了一下 ``` export default { data() { return { active_date: this.defaultDate, ... } }, methods: { ... onTransitionEnd (index) { ... this.getDaies(vm.dates[1].date).forEach(info => { //...