unsuccessful attempt using repodata from current_repodata.json, retrying with next repodata source
2024-05-10这个错误信息通常出现在使用 Conda 或 Mamba 更新或安装软件包时。它表明 Conda 在尝试使用当前的 repodata 文件(用于存储软件包元数据和信息的文件)时遇到了问题,因此它会尝试使用下一个可用的 repodata 源。这个问题可能是由于网络问题、repo 源配置错误、或者是当前 repo 数据损坏所致。_conda unsuccessful attempt repo
JS 创建数组 ( 6种方法 )
2024-05-09JS创建数组可通过字面量、构造函数Array()、Array.of()、Spread运算符、Array.from()等方式,例如:let arr = [1, 2, 3]、let arr = new Array(3)、let arr = Array.of(1, 2, 3)、let arr = [...'abc']、let arr = Array.from({length: 3}, (_, i) => i 1)。_js 构建数组
正确解决npm异常:Could not resolve dependency:npm WARN peer eslint@“>=1.6.0 <7.0.0“ from [email protected].
2024-05-07正确解决npm异常:Could not resolve dependency:npm WARN peer eslint@">=1.6.0
‘Element‘ is missing the following properties from type ‘HTMLElement‘: accessKey, accessKeyLabel
2024-05-06Typescript 在TS文件里使用document.getElementsByClassName报错:Type 'Element' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, dir, and 116 more.ts在使用document.getElementsByClassName,document.querySelector的时候,获取到_type 'element' is missing the following properties from type 'htmlelement':
Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cann
2024-05-05Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot deserialize value of type `java.sql.Timestamp` from String "2024-02-20 19:34:16.0": expected format "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"_resolved [org.springframework.http.converter.httpmessagenotreadableexception
Vue3 TS4.8其他踩坑记录
2024-05-05Vue3 Module has no default export.Vetur(1192),Vue3不要和Vetur搭配是用,而是是用Volar_has not been built from source file
echarts 画中国地图
2024-04-30数据可视化平台,中国各省数据和坐标阿里云可视化效果使用echart画中国地图,步骤如下1.安装依赖npm i echarts创建一个js文件当你可以访问https请求的时候则使用,如下代码import axios from "axios";export default axios.get("https://geo.datav.aliyun.com/areas_v3/bound/100000_full.json")如果无法请求https接口,则直接导入3。配置option配_echarts中国地图
【TypeScript】TS类型声明文件
2024-04-29项目内共享类型如果多个 .ts 文件中都用到同一个类型,此时可以创建 .d.ts 文件提供该类型,实现类型共享。Props } from './index' //通过import导入 // type Props = { x: number;Props } from './index' //通过import导入 // type Props = { x: number;x : number;Props } //创建需要共享的类型,并使用export导出操作步骤:创建 index.d.ts 类型声明文件。_index.d.ts是干嘛的
uniapp 全局 组件
2024-04-29UniApp 是一种跨平台的应用开发框架,可以使用 Vue.js 开发一次,生成 iOS、Android、H5、小程序等多个平台的应用。UniApp 中的组件可以分为两类:全局组件和局部组件。全局组件是可以在整个应用的任何地方使用的组件,而局部组件则只能在定义它的页面或组件内使用。要使用全局组件,需要在 main.js 文件中进行注册,例如:import Vue from 'vue'imp..._uniapp 全局组件
vue2bug解决:in ./src/views/install/data-base/scss/menu.scss Module Warning (from ./node_modules/postc
2024-04-29从给出的警告信息来看,问题似乎与CSS属性start有关这个属性在某些浏览器中可能不受支持,因此建议你使用flex-start代替。欢迎关注我获取前端学习资源,日常分享技术变革,生存法则;行业内幕,洞察先机。_module warning (from ./node_modules/postcss-loader/src/index.js):