- 博客(7)
- 收藏
- 关注
原创 React 懒加载
方式一:封装工具组件 import React, { Component } from 'react'; function Asynccom(fn){ return class Asy extends Component { constructor(props){ super(props); this.state = { Component:null } }
2021-12-12 21:29:26 519
原创 手动配置前端测试用的后端服务器
一,最基础的服务器 目标文件目录 1.初始化 npm init 2.项目文件夹命名: 3.安装express npm install express 4.vscode打开/ 新建app.js /新建static文件夹 / 准备页签图标favicon.ico 5.app.js代码 const express = require('express') const app = express() app.use(express.static(__dirname + '/static')
2021-11-28 19:54:07 214
原创 码云-详细笔记
配置忽略文件 .gitignore文件中,可以配置忽略文件 4.暂存代码 在工作区完成一个功能后,我们可以将当前代码先暂存起来 在终端中进入git仓库目录: 进入仓库路径后,末尾会有一个(master) 执行以下命令暂存代码(确保无多余输出,有则继续执行命令) git add . 5.提交代码到本地仓库 执行以下命令将暂存区的代码提交到本地仓库: git commit -m '提交记录信息说明' 如果暂时不需要将代码共享到远程,就可以继续写代码,重复上面暂存、提交 6...
2021-11-28 01:45:39 219
原创 vue表单/react表单
<template> <div> <h2>表单</h2> <form @submit.prevent ="demo"> 账号:<input type="text" v-model.trim="userInfo.account" placeholder="请输入账号"/> <br><br> 密码:<input t...
2021-11-20 15:47:55 504
原创 Vue资源
1.张天禹---vue基础 有道云笔记 (youdao.com) 阿里云盘分享 vue3: https://github.com/Panyue-genkiyo/vue3-learning vue2依据脚手架: https://github.com/Panyue-genkiyo/vue-advance vue基础不依赖脚手架: https://github.com/Panyue-genkiyo/vue-learning ...
2021-11-05 13:37:18 398
原创 2021-09-15如何把一个字符串的大小写取反(大写变小写小写变大写),例如 ’AbC‘ 变成 ‘aBc‘
//如何把一个字符串的大小写取反(大写变小写小写变大写),例如’AbC'变成'aBc' vartext="HELloaaPPpp"; console.log("您的字符串:"+text); //封装方法 functionchange(text){ lettextbig=text.toUpperCase(); letarr=text....
2021-09-15 00:04:29 407
原创 递归内置数组转单数组
<script> //letarrs=[1,2,[32,4,5,[6,7],8],9,10,[11,[12,13]],11];//扁平化 //leta=[346,56,[3,[1,[4,5],2],[4,5]]]; //letb=[2,[1,2],[8,7,[8,7]]] //console.log(...b); ////console...
2021-09-15 00:02:48 114
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人