2021年8月24日

摘要: 1.读取Excel表格 panda方式 ,普通的excel可行,对于有些数据复杂的,可能提取不了 import pandasexcel=pandas.read_excel('现代征信学.xlsx',index_col='列名',header=None) #header默认为0,指读取第几行,0代表第 阅读全文
posted @ 2021-08-24 22:06 kobe 阅读(3159) 评论(0) 推荐(0)

2021年8月16日

摘要: 1.powershell执行: Set-WebConfiguration "/system.ftpServer/firewallSupport" -PSPath "IIS:\" -Value @{lowDataChannelPort="60000";highDataChannelPort="6002 阅读全文
posted @ 2021-08-16 11:33 kobe 阅读(1761) 评论(1) 推荐(1)

2020年11月13日

摘要: 1.open ios/Runner.xcodeproj 2.I checked Runner/Pods is empty in Xcode sidebar. 3.drop Pods/Pods.xcodeproj into Runner/Pods.(在xcode中,从finder拖过去) 4."Val 阅读全文
posted @ 2020-11-13 10:27 kobe 阅读(579) 评论(0) 推荐(0)

2020年11月9日

摘要: (1)查找文件 find -name my.cnf [查找精确文件名] whereis my [模糊查找] (2)重启服务 1.mysql service mysqld restart 2.nginx service nginx restart 3.bind service named restar 阅读全文
posted @ 2020-11-09 14:33 kobe 阅读(118) 评论(0) 推荐(0)
摘要: (1)git 查看当前仓库地址以及设置新的仓库地址 git remote show origin (2)git mac 安装配置 通过homebrew安装Git 1、未安装homebrew,需安装homebrew /usr/bin/ruby -e "$(curl -fsSL https://raw. 阅读全文
posted @ 2020-11-09 11:15 kobe 阅读(70) 评论(0) 推荐(0)

2020年7月8日

摘要: 每次archive,或者flutter 升级 都有点问题,记录下 1. 'connectivity/ConnectivityPlugin.h' file not found 尝试以下: (1).删除Podfile,Podfile.lock,Pods文件夹,Runner.xcworkspace,让fl 阅读全文
posted @ 2020-07-08 09:02 kobe 阅读(805) 评论(0) 推荐(0)

2020年4月26日

摘要: Flutter alipay支付集成,尝试了3种插件 (1)插件sy_flutter_alipay ios下编译失败,放弃 (2)插件 flutter_alipay 最终也失败放弃 https://github.com/best-flutter/flutter_alipay 几个点: 1.info. 阅读全文
posted @ 2020-04-26 17:19 kobe 阅读(4567) 评论(0) 推荐(0)

2019年3月31日

摘要: (1) 获取当前屏幕宽度 width: MediaQuery.of(context).size.width, (1) pull_to_refresh,smartrefresh 自定义文字: new SmartRefresher( headerBuilder: (context,mode) { ret 阅读全文
posted @ 2019-03-31 20:01 kobe 阅读(269) 评论(0) 推荐(0)
摘要: (1)文本超出折叠:child: Text('跑马灯dddd的范德萨范德萨放多少范德萨范德萨范德萨范德萨范德萨发',maxLines: 1,overflow: TextOverflow.ellipsis) (2)占位剩余空间:new Expanded( (3) 插件:dropdown_menu (4 阅读全文
posted @ 2019-03-31 19:50 kobe 阅读(144) 评论(0) 推荐(0)

2019年3月24日

摘要: (1)AppBar:automaticallyImplyLeading//是否带返回leading箭头 (2)非route路由页面跳转 :Navigator.of(context).push(MaterialPageRoute(builder: (context) => UnderPage())), 阅读全文
posted @ 2019-03-24 11:10 kobe 阅读(99) 评论(0) 推荐(0)

导航