- 博客(17)
- 问答 (1)
- 收藏
- 关注
原创 uniapp uni-file-picker 压缩图片 上传到oss 并且回显
【代码】uniapp uni-file-picker 压缩图片 上传到oss 并且回显。
2024-10-12 16:00:11
561
原创 判断是不是点击元素内部
document.addEventListener("click", e => { if (this.$refs.colorBox) { let isSelf = this.$refs.colorBox.contains(e.target); if (!isSelf) { this.colorShow = false; } }})
2022-05-30 11:20:44
426
原创 导出excel表格
<template> <div> <button @click="exportExcel">导出</button> </div></template><script setup> const list = [ {name:'zs', age:123}, {name:'ls', age:99, sex:'1'}, {name:'ls222', sex:'1'}, ] .
2022-05-20 00:00:20
144
原创 解决 vue-router 中导航菜单连续点击同一个导航时 控制台报错
解决,在router index.js 文件添加// 解决ElementUI导航栏中的vue-router在3.0版本以上重复点菜单报错问题const originalPush = VueRouter.prototype.pushVueRouter.prototype.push = function push(location) { return originalPush.call(this, location).catch(err => err)}...
2021-11-24 17:11:18
657
原创 使用 nodeJs 简单爬取页面数据
const fs = require("fs")// npm install axios cheerioconst cheerio = require('cheerio')const axios = require("axios").defaultconst books = []axios.get('https://www.hongxiu.com/rank/hotsales').then(res=>{ // 可以使用 jq 语法 操作页面元素 // 把 HTML 告诉你.
2021-11-24 15:11:25
1021
空空如也
mysql 安装出现红叉,求解决
2022-01-10
TA创建的收藏夹 TA关注的收藏夹
TA关注的人