摘要:
配置环境变量:vi ~/.bash_profile export RABBIT_HOME=/usr/local/Cellar/rabbitmq/3.8.3 export PATH=$PATH:$RABBIT_HOME/sbin sudo rabbitmq-plugins enable rabbitm 阅读全文
2020年3月30日 #
2020年3月19日 #
摘要:
Container( child: TextField( controller: activeCodeEditer, keyboardType: TextInputType.number, focusNode: _nodeText3, // style: TextStyle(fontSize: 14 阅读全文
摘要:
遇到的问题是FlutterDownloader.initialize()执行之后 fluwx登录回调就失效了。 暂时解决的办法是把FlutterDownloader初始化的方法放在各自的需要用的页面内,退出页面的时候销毁 阅读全文
2020年3月18日 #
摘要:
处理通用链接 当APP被UniversalLink调起后,可以在delegate中使用如下方法进行对应处理 - (BOOL) application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userAct 阅读全文
2020年2月25日 #
摘要:
saveHB: function () { console.log('保存海报'); // wx.navigateTo({ // url: '/pages/hualang/shengchenghb/taskCardPost', // }) var that =this; wx.showLoading 阅读全文
2020年1月21日 #
摘要:
先打成jar包 jar包位置在target位置 通过ftp工具上传到里云 配置阿里云安全组规则。 期间可能碰到启动报错,查看日志处理就可以了。 另外查看端口命令netstat -tunlp | grep 8889 查看指定端口是否开启 mac sudo lsof -i:6379 sudo lsof 阅读全文
2020年1月18日 #
2020年1月7日 #
摘要:
/usr/local/redis-4.0.10/src/redis-server /etc/redis.conf 前面的执行find / -name redis-server 命令查找位置 后面用whereis redis 进行查找redis.conf 如果不知道redis-server文件位置输入如下命令查询位置 查看是否启动成功: netstat -nplt 阅读全文
摘要:
kdevtmpfsi有守护进程,单独kill掉kdevtmpfsi进程会不断恢复占用。守护进程名称为kinsing,需要kill后才能解决问题。 #查询关联的守护进程[root@iZwz97v9b9ili0mz7rl188Z overlay2]# systemctl status 2854● ses 阅读全文
2019年12月31日 #
摘要:
flutter 返回不刷新问题,因为需求必须要返回刷新下页面 所以想个办法进行返回刷新,想了个办法 只能使用eventBus 去主动激活上个页面的某个方法进行刷新 这种情况下会报一个错: Flutter setState() or markNeedsBuild() called when widge 阅读全文