会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
随笔:89 文章:0 评论:45 阅读:
33万
米雪也是雪❤
坚持。
博客园
首页
新随笔
联系
订阅
管理
[置顶]
web端语音识别及语音播报
摘要: 语音播报 SpeechSynthesisUtterance是HTML5中新增的API,用于将指定文字合成为对应的语音.也包含一些配置项,指定如何去阅读(语言,音量,音调)等; 具体api请参考:https://developer.mozilla.org/zh-CN/docs/Web/API/Spee
阅读全文
posted @ 2022-06-16 18:16 饭米雪
阅读(1644)
评论(0)
推荐(1)
编辑
[置顶]
Docker+GitLab-CI持续集成
摘要: 摘要:本文主要记录了Python项目在GitLab中实现自动部署的具体操作; 1、持续集成基本概念 在传统开发过程中,代码的集成工作通常是在所有工程师们工作完成后进行的,需要单独构建,这往往会花费大量的时间和精力。持续集成是一种将集成工作放在软件开发阶段的做法,以便更加有规律地构建、测试和集成代码;
阅读全文
posted @ 2022-06-14 18:56 饭米雪
阅读(407)
评论(0)
推荐(0)
编辑
[置顶]
Vue-Cli3/Webpack / i18n / image / CDN vue项目优化总结
摘要: 如转载,请注明出处,谢谢。 vue项目优化总结 1、 开发环境下载性能分析插件,使用交互式可缩放树图可视化webpack输出文件的大小,便于分析; npm install --save-dev webpack-bundle-analyzer /* vue.config.js */chainWebpa
阅读全文
posted @ 2020-04-30 22:35 饭米雪
阅读(806)
评论(0)
推荐(0)
编辑
[置顶]
复习之小程序
摘要: /** * 1、小程序开发流程 *a、申请账号 *b、安装开发者工具 *c、编译预览 *d、打包提测发布上线 * ****//** * 2、小程序代码构成 *a、wxml //模板 * wxml的标签有view, button, text等,wx:if、wx:for以及{{}}, * eg: * <
阅读全文
posted @ 2020-02-21 15:17 饭米雪
阅读(379)
评论(1)
推荐(0)
编辑
[置顶]
echarts 折线图点击高亮
摘要: echarts中注册事件很多 ,记录下今天做的折线图点击高亮; 查了api,看了半天,发现折线图点击时只能做到圆点变大,并不能实现点击线条,整条线条高亮,也真是醉了。 上图: 如图所示,只能圆点变大。。。 贴出代码: function chartModule () { var self = this
阅读全文
posted @ 2018-01-08 19:45 饭米雪
阅读(4432)
评论(5)
推荐(0)
编辑
[置顶]
vue中 左侧导航条 多个toggleClass
摘要: <ul> <li v-for='item in items' @click="showToggle(item)"> <i :class="{'iconfont icon-zuojiantou':item.isA,'iconfont icon-down1':!item.isA}"></i> </li>
阅读全文
posted @ 2017-08-28 14:28 饭米雪
阅读(1760)
评论(0)
推荐(0)
编辑
2022年12月7日
CSS3旋转流动的彩色边框特效
摘要: 效果图如图所示: <div class='box'>你好</div> <style lang='scss'> .box { position: relative; border-radius: 10px; overflow: hidden; width: auto; height: auto; z-
阅读全文
posted @ 2022-12-07 17:28 饭米雪
阅读(474)
评论(0)
推荐(0)
编辑
2022年11月15日
react hooks echart自适应解决方案
摘要: //index.tsx import React, { useEffect, useRef, useState } from "react"; import * as echarts from "echarts"; import useEchartResizer from "./useEchartR
阅读全文
posted @ 2022-11-15 10:51 饭米雪
阅读(364)
评论(0)
推荐(0)
编辑
2022年6月14日
yarn 出现 【 info There appears to be trouble with your network connection. Retrying... 】超时问题解决
摘要: yarn 出现 【 info There appears to be trouble with your network connection. Retrying... 】超时问题解决 出现这种问题分为不同环境,且大概率是代理问题; 环境一:本地开发环境 1、解决方案一 # 调整为taobao镜像源
阅读全文
posted @ 2022-06-14 18:54 饭米雪
阅读(31618)
评论(2)
推荐(0)
编辑
2022年2月18日
python3 安装 mysqlclient 报错解决【mac】
摘要: 官网: https://pypi.org/project/mysqlclient/ macOS(自制) 安装 MySQL 和 mysqlclient: # Assume you are activating Python 3 venv $ brew install mysql $ pip insta
阅读全文
posted @ 2022-02-18 10:33 饭米雪
阅读(519)
评论(0)
推荐(0)
编辑
2022年2月17日
mac中设置python默认版本为3.x【永久有效】
摘要: mac中自带python版本为2.7,终端中输入python默认使用的版本为2.7版,如果需要使用3.x版本,则前缀需要输入python3,比较麻烦, 特此记录下,在mac中怎么将python默认版本指向3.x版本,网上看到的大多方法,实际上只在当前终端有效,再次打开新的终端窗口,输入python还
阅读全文
posted @ 2022-02-17 14:47 饭米雪
阅读(5756)
评论(0)
推荐(0)
编辑
2022年1月12日
docker compose安装最新版
摘要: 运行以下命令以下载 Docker Compose 的当前稳定版本: $ mkdir -p ~/.docker/cli-plugins/ $ curl -SL https://github.com/docker/compose/releases/download/v2.2.2/docker-compo
阅读全文
posted @ 2022-01-12 17:51 饭米雪
阅读(2079)
评论(0)
推荐(0)
编辑
2022年1月11日
ubuntu中docker彻底卸载
摘要: 网上很多博主提供的命令行,其实并不能完全卸载docker。。。 #删除某软件及其安装时自动安装的所有包 sudo apt-get autoremove docker docker-ce docker-engine docker.io containerd runc # 删除无用的相关的配置文件 dp
阅读全文
posted @ 2022-01-11 17:17 饭米雪
阅读(3127)
评论(0)
推荐(0)
编辑
react中配置性能分析插件
摘要: react中配置性能分析插件,便于直观了解各个依赖包大小 .umirc.ts中 export default defineConfig({ .... analyze: { analyzerMode: 'server', analyzerPort: 8888, openAnalyzer: true,
阅读全文
posted @ 2022-01-11 10:12 饭米雪
阅读(294)
评论(0)
推荐(0)
编辑
下一页
<
2025年3月
>
日
一
二
三
四
五
六
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
公告
昵称:
饭米雪
园龄:
7年6个月
粉丝:
41
关注:
7
+加关注
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
我的标签
vue
(2)
yarn
(1)
webpack
(1)
vue-cli
(1)
docker
(1)
清空递归定时器
(1)
随笔档案
2022年12月(1)
2022年11月(1)
2022年6月(3)
2022年2月(2)
2022年1月(4)
2021年12月(1)
2021年11月(1)
2021年9月(2)
2021年8月(5)
2021年5月(1)
2021年4月(4)
2021年3月(1)
2020年11月(1)
2020年10月(3)
2020年9月(1)
2020年8月(1)
2020年7月(1)
2020年6月(2)
2020年5月(2)
2020年4月(2)
2020年2月(4)
2019年12月(5)
2019年11月(3)
2019年10月(1)
2019年9月(2)
2019年8月(1)
2019年6月(1)
2019年5月(1)
2019年4月(1)
2019年3月(1)
2019年2月(1)
2019年1月(1)
2018年12月(2)
2018年11月(3)
2018年10月(1)
2018年9月(2)
2018年8月(2)
2018年6月(1)
2018年5月(2)
2018年3月(3)
2018年2月(1)
2018年1月(8)
2017年11月(1)
2017年8月(2)
更多
阅读排行榜
1. Vue+WebSocket 实现页面实时刷新长连接(79681)
2. yarn 出现 【 info There appears to be trouble with your network connection. Retrying... 】超时问题解决(31618)
3. vue-resource+element upload上传(遇到formData总是变为object格式)(16382)
4. vue中img图片加载中以及加载失败显示默认图片问题(13803)
5. input el-input 只能输入正整数验证,过滤字母e且兼容(12560)
评论排行榜
1. Vue+WebSocket 实现页面实时刷新长连接(11)
2. vue-resource+element upload上传(遇到formData总是变为object格式)(5)
3. echarts 折线图点击高亮(5)
4. series not exists. Legend data should be same with series name or data name 【echart饼图出现这种提示】(4)
5. input el-input 只能输入正整数验证,过滤字母e且兼容(4)
推荐排行榜
1. series not exists. Legend data should be same with series name or data name 【echart饼图出现这种提示】(3)
2. input el-input 只能输入正整数验证,过滤字母e且兼容(3)
3. Vue+WebSocket 实现页面实时刷新长连接(3)
4. ajax报415解决方法(2)
5. element ui表格相同内容自动合并(2)
最新评论
1. Re:yarn 出现 【 info There appears to be trouble with your network connection. Retrying... 】超时问题解决
真的好用。
--xclidongbo
2. Re:series not exists. Legend data should be same with series name or data name 【echart饼图出现这种提示】
有用,帮我解决了
--爱吃蓝莓的猪
3. Re:series not exists. Legend data should be same with series name or data name 【echart饼图出现这种提示】
我出错的代码是这样的: //将后台返回的数据更新到option中 if(res.status){ option.legend.data = res.data.legend; option.xAxis....
--树深时见鹿nnn
4. Re:series not exists. Legend data should be same with series name or data name 【echart饼图出现这种提示】
有用
--初生土豆
5. Re:series not exists. Legend data should be same with series name or data name 【echart饼图出现这种提示】
刚好遇到了这个问题
--叶生啊
点击右上角即可分享