react
不在犯二的IT男
码农一个,进修中!
展开
-
JavaScript 常用汇总笔记
字符串let a = "Hello,World"//字符串长度a.length//字符串拼接 推荐let b = `${a} hi`//orlet c = a + " hi"//字符串是否存在 true, false 推荐a.includes("w")//or -1 不存在 a.indexOf("w")//字符串截取a.slice(0,2)//字符串替换a.replace("s","d")//字符串特分隔数组a.split(",")//数组分隔字符串le原创 2021-09-14 20:12:28 · 108 阅读 · 0 评论 -
CodeMirror 设置高度问题
一种场景如果当前页面就一个CodeMirror 组件的化可以直接css设置高度.CodeMirror { border: 1px solid #eee; height: auto;}第二种场景 一个页面有多个CodeMirror组件使用,可以设置ref```cssconst codemirrorRef = React.useRef();useEffect(() => { codemirrorRef.current.editor.display.wrapper.styl原创 2021-09-02 13:35:00 · 3281 阅读 · 0 评论 -
react native:Automatically accept all SDK licences
macosyes | sudo ~/Library/Android/sdk/tools/bin/sdkmanager --licenses原创 2019-07-17 16:28:29 · 215 阅读 · 0 评论 -
react-navigation::null is not an object (evaluating '_RNGestureHandlerModule.default.Direction')
官方安装方法。添加链接描述iOS 在Podfile文件里添加pod ‘RNGestureHandler’, :podspec => ‘…/node_modules/react-native-gesture-handler/RNGestureHandler.podspec’原创 2019-07-17 10:53:59 · 1024 阅读 · 0 评论 -
React Native RSA 加密
官方地址官方的 rsa.setPublicString(publicKey); 报错 用下面方法替换下了下,应该是js版本的问题导致的 rsa.setPublic();原创 2018-04-01 11:42:27 · 2164 阅读 · 1 评论 -
[!] Unable to find a specification for `boost-for-react-native` depended upon by `Folly`
react-native React 0.54.2 弄个VPN pod update原创 2018-03-25 21:38:01 · 5133 阅读 · 0 评论 -
ReactNative Print: Entry, ":CFBundleIdentifier", Does Not Exist 问题排查
进入你的 project 进入ios 目录 点击 xxx.xcodeprojcommand + rPort 8081 already in use, packager is either not running or not running correctly(8081端口被占用)那就查看谁暂用了这个端口 执行下面命令lsof -i tcp:8081发现快播播放暂用了这个端口,关...原创 2018-03-24 17:40:04 · 946 阅读 · 0 评论 -
学习React Native(三)HelloWorld 基本源码学习
如果有错误请大家在下面留言,没办法,谁让自己是小白,边查资料边学!请包涵! 打开index.ios.js 第一行源码'use strict';js 严格模式 设立”严格模式”的目的,主要有以下几个: - 消除Javascript语法的一些不合理、不严谨之处,减少一些怪异行为; - 消除代码运行的一些不安全之处,保证代码运行的安全; - 提高编译器效率,增加运行速度; -原创 2015-11-28 22:24:01 · 966 阅读 · 0 评论 -
学习React Native(二)HelloWorld
首先创建个ReactNative文件夹来放HelloWorld工程mkdir ReactNativecd ReactNative因为墙的原因,可以把npm镜像指向淘宝或者vpn 参考文章下面创建HelloWorld工程 react-native init HelloWorld --verbose ```![创建成功会看见下面目录](http://img.blog.csdn.net/201511原创 2015-11-28 20:26:05 · 1742 阅读 · 1 评论 -
学习React Native(一)环境搭建
1 安装Homebrew 把下面命令copy到命令行终端上 Homebrew 官网ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"Mac OSX上的软件包管理工具,能在Mac中方便的安装软件或者卸载软件2 安装node.js node.js官网brew in原创 2015-11-28 15:21:17 · 5482 阅读 · 0 评论