上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 33 下一页

2020年11月2日

摘要: 1.全局安装taro yarn global add @tarojs/cli 2.初始化项目 npx @tarojs/cli init project 3.运行 h5端运行命令 yarn dev:h5 自动打开 localhost:10086/#/pages/index/index 微信小程序端运行 阅读全文

posted @ 2020-11-02 01:43 猫头唔食鱼 阅读(227) 评论(0) 推荐(0) 编辑

2020年10月26日

摘要: 1.基本类型 // 基本类型 let a:number = 3 let b:string = '3' let c:undefined = undefined let d:null = null let e:number = NaN let f:boolean = true 2.声明方法 方式一: f 阅读全文

posted @ 2020-10-26 01:10 猫头唔食鱼 阅读(7288) 评论(0) 推荐(0) 编辑

2020年10月25日

摘要: 1.数组 let b1:number[]=[1,2,3] let b2:string[] = ['asdf'] let b3:boolean[]=[true,false] let b4:null[] = [null] let b5:undefined []= [undefined] let b6:a 阅读全文

posted @ 2020-10-25 21:09 猫头唔食鱼 阅读(2145) 评论(0) 推荐(0) 编辑

2020年10月24日

摘要: 1.安装 yarn add styled-components 2.创建style.js import {createGlobalStyle} from 'styled-components' // 导出的变量要大写开头 export const CreateStyle = createGlobal 阅读全文

posted @ 2020-10-24 15:20 猫头唔食鱼 阅读(240) 评论(0) 推荐(0) 编辑

2020年10月11日

摘要: App.js import React, { Component } from 'react'; import './style.css' class App extends Component { constructor(props) { super(props); this.state = { 阅读全文

posted @ 2020-10-11 00:47 猫头唔食鱼 阅读(1131) 评论(0) 推荐(0) 编辑

2020年10月10日

摘要: 0.安装Charles中文破解版 1.安装axios yarn add axios 2.引入axios import axios from 'axios' 3.写好json文件test.json ["vue","react","ng"] 4.配置Charles (1)选择工具/本地映射 (2)本地映 阅读全文

posted @ 2020-10-10 00:58 猫头唔食鱼 阅读(175) 评论(0) 推荐(0) 编辑

摘要: 方法一:类似vue的写法,标签里定义一个$ref ,然后通过this.refs.xxx获取dom {/* 方法一:类似vue的写法 */} <span ref="test">test</span> // 获取ref只能在componentDidMount里 componentDidMount(){ 阅读全文

posted @ 2020-10-10 00:22 猫头唔食鱼 阅读(632) 评论(0) 推荐(0) 编辑

2020年10月8日

摘要: // 方法1: let obj = { name:'zs',age:12,addr:'gz' } let arr = [] for(var x in obj) { let o = {} o[x] = obj[x] arr.push(o) } console.log(arr); // 方法2 let  阅读全文

posted @ 2020-10-08 20:08 猫头唔食鱼 阅读(924) 评论(0) 推荐(0) 编辑

2020年10月1日

摘要: 把多维数组转化为一维数组 es6写法 const deepFlatten = arr => [].concat(...arr.map(v => Array.isArray(v) ? deepFlatten(v) : v)); console.log(deepFlatten([1, [2], [[3] 阅读全文

posted @ 2020-10-01 23:29 猫头唔食鱼 阅读(409) 评论(0) 推荐(0) 编辑

摘要: function getTime(seconds){ return new Promise(resolve=>{ setTimeout(() => { resolve(seconds) }, seconds); }) } async function test(){ let arr = [getTi 阅读全文

posted @ 2020-10-01 23:24 猫头唔食鱼 阅读(2476) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 33 下一页