- 博客(7)
- 资源 (1)
- 收藏
- 关注
原创 js数组操作
目录pushpopunshiftshiftfilterforEachsplicesliceconcatjoinreversesorttostringreducepush用于在数组的末尾追加一个或多个元素,会改变原数组,并返回数组的长度var arr1 = ['1', '2', '3', '4'];console.log(arr1.push('6')); // 5console.log(arr1); // ['1', '2',.
2022-03-04 17:11:42
376
原创 react-native-baidu-map 开发版和发布版SHA1
一.开发版SHA11.打开命令窗口win+r cmd 默认打开的用户路径下2.然后cd .android 进入到android目录下3.然后执行keytool -list -v -keystore debug.keystore, 如果报错说debug.keystore不存在的话,就创建这个文件,命令keytool -exportcert -list -v -alias androiddebugkey -keystore ~/.android/debug.keystore,生成de...
2020-11-13 16:12:46
230
原创 pack.json中的~和^的区别
在pack.json文件中版本说明前面还有个符号:^(插入符号)和 ~(波浪符号),他们之间的区别:例如:~(波浪符号): 他会更新到当前小版本的中最新的版本。例如:"crypto-js":"~3.1.9-1",这个库会去匹配更新到3.1.x的最新版本,如果出了一个新的版本为3.2.0,则不会自动升级^(插入符号): )他会更新到当前大版本的中最新的版本。例如:"moment":"^2.24.0",, 这个库会去匹配更新到2.x.x中最新的版本,但是他不会自动更新到3.0.0都不填...
2020-10-12 17:25:51
888
原创 react native Deep LinkingIOS
对于 iOS 来说,如果要在 App 启动后也监听传入的 App 链接,那么首先需要在项目中链接RCTLinking,然后需要在AppDelegate.m中增加以下代码// iOS 9.x 或更高版本#import <React/RCTLinkingManager.h>- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<UIApplic
2020-08-25 10:51:05
421
原创 flutter运行app失败 running gradle task assembleDebug
flutter环境搭建完成之后,创建好了项目,在运行项目flutter run,就一直卡在那,就像这样:运行时会卡在Running Gradle task 'assembleDebug'..., 之后就会报这样的错FAILURE: Build failed with an exception.* What went wrong:Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'.&g
2020-05-26 14:44:46
4240
1
原创 react-native 父子组件之间的传值与函数调用
父组件向子组件传值,也可以传函数子组件接收父组件传来的值: this.props.value子组件向父组件传值:在这里我用的是函数的回调实现的child.jsParent.js父组件传给子组件方法onParentFun,然后通过方法的回调把子组件的值传给父组件在子组件传值的过程中,函数的回调也就是子组件调用父组件的方法父组件调用子组件方法有两种: ...
2020-04-23 11:18:00
1774
原创 Deprecated Gradle features were used in this build, making it incompatible with Gradle
在运行react-native项目的时候,突然报了一个这个错误,Deprecated Gradle features were used in this build, making it incompatible with Gradle 6.0.Use ‘–warning-mode all’ to show the individual deprecation warnings意思就是Gr...
2020-04-14 17:14:13
9994
4
Xcode iOS11.3 真机测试配置包
2018-07-20
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人