2021年7月8日
posted @ 2021-07-08 06:54
千里码!
阅读(8)
推荐(0)
摘要:
一、自我介绍: 1、基本情况(姓名、学校(985,211必填不知名大学就算了,很现实)、专业) 2、项目经验 : 项目名称(xxxx),项目技术栈(举例:vue全家桶(vue vuex vue-router…),饿了么UI、Ant design,axios异步请求),担任角色(前端开发),主
阅读全文
posted @ 2021-07-08 06:50
千里码!
阅读(32)
推荐(0)
2021年6月20日
posted @ 2021-06-20 00:02
千里码!
阅读(9)
推荐(0)
2021年6月19日
摘要:
注意:在src下创建setupproxy.js文件 const proxy = require('http-proxy-middleware') module.exports = function(app) { app.use( proxy('/api1', { //api1是需要转发的请求(所有带
阅读全文
posted @ 2021-06-19 22:05
千里码!
阅读(13)
推荐(0)
摘要:
import axios from "axios" import qs from 'qs' //响应时间 axios.defaults.timeout = 6000; //配置请求头 axios.defaults.headers.post['Content-Type'] = 'application
阅读全文
posted @ 2021-06-19 21:36
千里码!
阅读(11)
推荐(0)
摘要:
// 聊聊 浏览器使用 fetch(promise风格) 发送请求 /** * 网络请求: * xhr: * ajax(xhr封装) * axios(promise风格) * * xhr:请求分为 3个阶段 * 1、发送请求 * 2、请求成功或失败 * 3、成功则接收数据,失败则返回失败原因 * *
阅读全文
posted @ 2021-06-19 21:22
千里码!
阅读(36)
推荐(0)
摘要:
/** * * 各个排序算法的封装 * * * */ function ArrayList(){ this.array = []; ArrayList.prototype.insert = function (num){ this.array.push(num); } ArrayList.proto
阅读全文
posted @ 2021-06-19 20:56
千里码!
阅读(15)
推荐(0)
摘要:
直接干代码 /** * * 二叉搜索树封装 * * */ function BinarySearchTree(){ this.root = null; function Node(key){ this.key = key; this.left = null; this.right = null; }
阅读全文
posted @ 2021-06-19 20:47
千里码!
阅读(16)
推荐(0)
摘要:
图示 直接干代码 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> *{ margin: 0; padding: 0; } body{ overflow: hidd
阅读全文
posted @ 2021-06-19 20:22
千里码!
阅读(14)
推荐(0)
摘要:
效果图 直接干代码 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>钟表</title> <style type="text/css"> body{ width: 100vw; height: 100vh; overflow:
阅读全文
posted @ 2021-06-19 11:20
千里码!
阅读(12)
推荐(0)