默认
2023年11月23日更新
3011次浏览
安装 jsx yarn add reactnativevideo iOS下 sh npx podinstall Android下 修改android/build.gradle java allprojects { repositories { .... 保留其他的,添加下面的 jcenter() { content { includeModule…
2023年11月23日更新
3011次浏览
这里需要两个组件 reactnativecollapsible(展开动画) reactnativelineargradient(半透明遮挡) 安装 sh yarn add reactnativecollapsible reactnativelineargradient iOS下 sh npx podinstall Android下 当前版本无需特别处理…
2023年11月23日更新
3011次浏览
安装 sh yarn add reactnativesidemenuupdated 使用 jsx import React, { useState } from 'react'; import { StyleSheet, View, Text, TouchableHighlight, TouchableWithoutFeedback } from 'reactnative'; import SideMenu from 'reactnativesidemenuupdated'; const Menu = props…
2023年11月23日更新
3011次浏览
安装 sh yarn add reactnativetableviewsimple 使用 jsx import as React from 'react'; import { ScrollView, StyleSheet } from 'reactnative'; import { Cell, Section, TableView } from 'reactnativetableviewsimple'; import Colors from '../../constants/Colors…
2023年11月13日更新
570次浏览
Windows与Linux的区别 Windows 中毒,需要安装杀毒软件。 授权费用非常贵。 不稳定,几乎每周重启,访问量大,每天重启好几次。 远程需要使用…
2023年11月13日更新
570次浏览
权限与更新 bash 用管理员的权限运行 sudo 检查更新。会要求输入密码,只管打就行了,屏幕上没有显示 sudo apt update centos下…
2023年11月13日更新
570次浏览
介绍 这世间上只有三种编辑器,一种是Vim,一种是Emacs,另一种是其他。 Vim:编辑器之神 Emacs:神之编辑器 显然我们不是…
2023年11月13日更新
570次浏览
安装 Ubuntu/Deepin下 sh wget O install.sh http://download.bt.cn/install/installubuntu6.0.sh && sudo bash install.sh Debian下 sh wget O install.sh…
2023年11月13日更新
1969次浏览
使用 = 来定义函数 js let fn = (a, b) = { return a b; } // 简写为 let fn = (a, b) = a b; // 等同于 let add…
2023年11月13日更新
1969次浏览
函数调用 将数组的值,展开后依次传给x, y, z js function fn(x, y, z) { }; let args = 1, 2, 3; fn(...args); 展开数组…
2023年11月13日更新
1969次浏览
拼接字符串 js var author = 'Aaron Ryuu'; var str = '汉时,有长乐宫又有未央宫' '"长乐未央"四字,常见于汉宫瓦当。' '"长乐"的"乐",最早…
2023年11月13日更新
1969次浏览
块级作用域 let声明的变量只在let命令所在的代码块内有效。 html doctype html html head /head body script { let a…
2023年11月13日更新
1969次浏览
forEach 遍历 js const nums = 1, 2, 3, 4, 5; nums.forEach(function(item, index, array) { console.log(item); }) map 返回新数组 js const result =…
2023年11月13日更新
1969次浏览
基础概念 类: 可以以理解成做房子的图纸 实例化: 将房子做出来这个过程 对象: 房子 示例 html doctype html html head …
2023年11月23日更新
1969次浏览
通过一个类,可以创建多个对象。每个对象有公共的方法,但也可以又有不同的地方。 html doctype html html head /head…
2023年11月13日更新
1969次浏览
当实例化时,会自动运行的方法,就是构造方法。 构造方法中,可以接收参数,用于初始化属性。 html doctype html html head /head body script…
2023年11月13日更新
1969次浏览
使用extends可以实现类的继承,继承后的子类,拥有父类所有的属性、方法。 html doctype html html head /head body script // 父…
2023年11月13日更新
1969次浏览
html doctype html html head /head body script class Animal { eat() { console.log('我会吃') } run() { console.log('我会跑') } } class Bird extends Animal { run(){ console.log…
2023年11月13日更新
1969次浏览
静态的属性或方法,也叫做类属性,或者类方法,它是属于类的,而不是属于对象的。 静态的属性或方法,不…
2023年11月23日更新
1969次浏览
Promise的含义 Promise是异步编程的一种解决方案,比传统的解决方案——回调函数和事件——更合理和更强大。它由社区最早提出…
登录