一、matrix资源及介绍 发表于 2018-12-06 | 分类于 im 1.介绍官网: https://matrix.org/docs/projects/try-matrix-now.html套用官网的说法:Matrix is an ecosystem for open and interoperable communication. Matrix是一个开源的生态系统 ... 阅读全文 »
一、docker命令使用 发表于 2018-12-03 | 分类于 docker docker container ps 列出docker下所有正在运行的容器信息 docker container ps -a 列出docker下所有已安装容器信息,包括因异常导致未被启动起来的 docker stop Container_id 根据容器ID停止正在运行的容器 docker st ... 阅读全文 »
十、kotlin综合笔记 发表于 2018-12-03 | 分类于 kotlin br/> 1. kotlin的 apply使用:有如下Kotlin代码12var intent = getInitIntent(readableMap)intent.setClassName(currentActivity, readableMap.getString("entry& ... 阅读全文 »
一、注册码 发表于 2018-12-03 | 分类于 beyond_compare 1. beyond_compare4注册码123456w4G-in5u3SH75RoB3VZIX8htiZgw4ELilwvPcHAIQWfwfXv5n0IHDp5hv1BM3+H1XygMtiE0-JBgacjE9tz33sIh542EmsGs1yg638UxVfmWqNLqu-Zw91XxNE ... 阅读全文 »
四、json封装成bean的json事例 发表于 2018-11-29 | 分类于 android 安装 D:\gnt\src\weicha\weicha-android\app_builder\build\outputs\apk\weicha_2.6.2_[online]_debug.apk, logcat输入 RetrofitLog 即可抓取对应请求 1.请求: 巡防记录 https://bi ... 阅读全文 »
十八、ScrollView嵌套FlatList滚动处理 发表于 2018-11-06 | 分类于 React Native 借鉴该地址: https://stackoverflow.com/questions/51098599/flatlist-inside-scrollview-doesnt-scroll代码如下:12345678910111213141516171819202122232425262728293031 ... 阅读全文 »
三、css属性引发的scroll滚动不触发回调问题 发表于 2018-10-27 | 分类于 reactjs HomePage.css12345html, body{ background-color: #eee; overflow:hidden; overflow-y:auto;} HomePage.js123456789101112131415161718expor ... 阅读全文 »
十七、使用refs修改控件style 发表于 2018-10-20 | 分类于 React Native 首先对ref使用做下笔记。有2种使用方式:方式一:this.refs.xxx123456789101112131415export default class GatherDetailPage extends Component { render(){ return( &l ... 阅读全文 »
十六、react native 组件间通信,局部刷新 发表于 2018-10-20 | 分类于 React Native 局部刷新对于性能提升太重要了。我举几个场景: 当员工在钉钉上填写了请假时长, 请假原因后, 提交按钮由disable变为enable. 滚动app界面上的list到某一位置时,更改toolbar的标题或者样式如果按不考虑性能做法: 我在page页设置state. 让提交按钮或者 toolbar直接 ... 阅读全文 »
十五、子组件回调父类方法带参数的写法 发表于 2018-10-20 | 分类于 React Native 123456789101112131415161718import LabelEditor from '../../components/LabelEditor';export default class GatherDetailPage extends Component ... 阅读全文 »