摘要:
react-native run-ios --simulator "iPhone 7 Plus” xcrun instruments -w 'iPhone X' 阅读全文
摘要:
render() { return ( 2 this.props.navigation.push('Profile')} /> this.props.navigation.navigate('Home')} ... 阅读全文
摘要:
const ScreenWidth = Dimensions.get('window').width; static DimensionsTransform(px) { // 设计图纸以750为基准 return px/750*ScreenWidth } 阅读全文
摘要:
用 vsCode 开发微信小程序可以配置以下插件,让开发更美好: 1. vscode weapp api 2. vscode wxml 3. vscode-wechat 4. Easy WXLESS 5. 有个和 vsCode 差不多,还可以预览的 IDE:Egret Wing; minapp 小程 阅读全文
摘要:
在RN0.44版本之前,路由导航跳转几乎是使用的是Navigator组件,在0.44版本以后就不推荐使用了,官方推荐的是react-navigation,当然还是可以在废弃的库中找到: import { Navigator } from 'react-native-deprecated-custom 阅读全文
摘要:
一、引子 本文介绍JavaScript运行机制,这一部分比较抽象,我们先从一道面试题入手: 1 2 3 4 5 6 console.log(1); setTimeout(function(){ console.log(3); },0); console.log(2); 请问数字打印顺序是什么? 1 阅读全文
摘要:
问题描述执行npm install命令时出错,查看日志发现: Unexpected token < in JSON at position 183718 解决方法删除根目录下package-lock.json文件 参考Install error: Unexpected token < in JSON 阅读全文
摘要:
W3C和IE盒子模型 1) W3C定义的盒子模型包括margin、border、padding、content ,元素的width=content的宽度 2) . IE盒子模型与W3C的盒子模型唯一区别就是元素的宽度,元素的width=content+padding+border 我个人认为W3C定 阅读全文