logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

(vue+echarts)柱状图获取数据后按降序排列

<template><!--柱状图按降序排列,写了假数据,可复制直接跑--><div><div class="e-title"><divid="nationwideProvince"style="width:100%;height:295px"></div></div></template><sc

vue 错误 TypeError: Cannot read property 'length' of undefined

前端的methods中明明可以输出length,但是就是报错,而且错误时有时无的原因:没有预先判断数组是否存在,需要先对数组进行非空验证,加上,!=undefined的判断条件...

vue删除字符串的最后一个字符

这是一个图片组,从数据库读取的url,用逗号隔开let img = response.feedPicture;有三种方法删除最后一个字符逗号img = img.substring(0, img.length - 1);img = img.substring(0, img.length - 1);img= img.substring(0, img.lastIndexOf(’,’));...

[Vue warn]: Invalid prop: type check failed for prop “percentage“.Expected Number with value 0.46, g

percentage里面的数据是number类型<el-progressv-if="e.totalCount > 0" style="width: 50%" :text-inside="true" :stroke-width="20":percentage="((e.fullMarksCount / e.totalCount*100).toFixed(2))"></el-p

SpringBoot+vue多图片上传(url保存到数据库)和回显

application.properties里面写路径absoluteImgPath = E://Pictures/img/sonImgPath = img/service层@Value("${absoluteImgPath}")String absoluteImgPath;@Value("${sonImgPath}")String sonImgPath;...

[Vue warn]: Invalid prop: type check failed for prop “percentage“.Expected Number with value 0.46, g

percentage里面的数据是number类型<el-progressv-if="e.totalCount > 0" style="width: 50%" :text-inside="true" :stroke-width="20":percentage="((e.fullMarksCount / e.totalCount*100).toFixed(2))"></el-p

到底了