axios onDownloadProgress和onUploadProgress配置进度条

先来个简单的例子试试水 1 axios({ 2 url: 'https://www.***.com/***.png', 3 method: 'get', 4 onDownloadProgress (progress) { 5 console.log(Math.round(progress.loaded / ...

2022-12-10 629 阅读

免费开源剪辑软件Shotcut推荐和使用教程

  最近想剪辑一下教学视频,想着能不用盗版尽量不用盗版,况且自己的需求并不复杂,又不是剪辑电影电视剧了,就没有下载那几个大牌的剪辑软件。 简单研究了一下免费的剪辑软件,最后选...

2022-12-10 1289 阅读

电脑上收看传统电视频道:potplayer + iptv 源

以下正文开始。 在电脑上收盘传统电视频道,推荐 potplayer + iptv 源订阅的方式。 必备工具: (1)支持播放 iptv 的视频播放器,推荐 potplayer 或 VLC (2)iptv 频道的网络地址 必备工...

2022-12-10 919 阅读

Axure的安装与简单使用

Axure简单介绍:Axure即为原型(prototype),这个词来自拉丁文的词proto,意谓“最初的”,意义是形式或模型。那么Axure有什么用呢? Axure RP是一款专业的快速原型设计工具。通...

2022-12-10 281 阅读

git创建本地仓库的三种方法

    首先新建文件夹E:\git\repository\repo1,然后打开该目录 接下来,有三种方式创建本地仓库: 第一种方法: 右键,单击git GUI here,点击创建仓库,然后关闭即可 &...

2022-12-10 1036 阅读

spring springboot整合oauth2

1、pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" x...

2022-12-10 324 阅读

java javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path

javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path or classpath. at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:177) ~ at...

2022-12-10 1391 阅读

spring Spring Cloud OAuth2 实现Bad client credentials异常自定义信息返回

默认情况下申请令牌访问oauth/token未携带client_secret参数时会返回Bad client credentials     如果直接通过AuthenticationEntryPoint是无法自定义返回的信息,我们需要重写过滤...

2022-12-10 843 阅读

spring springboot+Oauth2——自定义AuthenticationManager和认证path

本人在工作中需要构建这么一个后台框架,基于springboot,登录时认证使用自定义AuthenticationManager;同时支持Oauth2访问指定API接口,认证时的AuthenticationManager和登录规则不同。在研...

2022-12-10 433 阅读

mybatis 【mybatis】查询数据库某些字段为null的解决方法

在自己写的mapper.xml文件时,查询数据库一些字段正常、一些字段为null。 经过对比发现为null的都是采用了 “_” 的命名字段,比如last_login_time。 因为我的pojo和mapper文件都...

2022-12-10 638 阅读