Fork me on GitHub
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 94 下一页
摘要: ## 正常使用异步axios 此时async:true,通过Promise的回调函数then设置变量videoSrc的值,然后vue数据驱动去渲染 ```html ``` ## 使用await同步存在问题 await会导致使用await同步的函数都返回Promise,也就是return永远是个异步函 阅读全文
posted @ 2023-05-22 11:33 秋夜雨巷 阅读(639) 评论(0) 推荐(0)
摘要: 网站镜像工具 阅读全文
posted @ 2023-05-10 15:55 秋夜雨巷 阅读(88) 评论(0) 推荐(0)
摘要: 安装 # 安装 npm install hevue-img-preview --save # main.js 引入 import hevueImgPreview from 'hevue-img-preview' Vue.use(hevueImgPreview) # 使用 #//给任意对象添加任意事件 阅读全文
posted @ 2023-04-28 15:22 秋夜雨巷 阅读(535) 评论(0) 推荐(0)
摘要: Oracle环境 Centos7.6.1810 Docker version 20.10.21 Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production Oracle补丁类型 Oracle CPU全称Cr 阅读全文
posted @ 2023-04-02 15:57 秋夜雨巷 阅读(583) 评论(0) 推荐(0)
摘要: Oracle11g升级到12c方案(单机) 一、概述 方案有四,风险依次递增: 一、 申请新服务器搭建12c,旧库11g数据迁移到12c(expdp/rman) 二、 原服务器上将11g停库,原安装目录修改名字,新装12c,再迁库 三、 原服务器上直接铲掉11g,安装12c 四、原服务器上将11g软 阅读全文
posted @ 2023-03-30 23:31 秋夜雨巷 阅读(33) 评论(0) 推荐(0)
摘要: Docker 用制定环境运行命令 docker run ubuntu:15.10 /bin/echo "Hello world" #docker: Docker 的二进制执行文件。 #run: 与前面的 docker 组合来运行一个容器。 #ubuntu:15.10: 指定要运行的镜像,Docker 阅读全文
posted @ 2023-03-30 23:31 秋夜雨巷 阅读(95) 评论(0) 推荐(0)
摘要: 拉取镜像 #拉取镜像 docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g #查看镜像 docker images 镜像比较大(6.9G),可能拉取时间会很久,需要耐心等待 创建容器 docker run -d -p 152 阅读全文
posted @ 2023-03-30 22:55 秋夜雨巷 阅读(181) 评论(0) 推荐(0)
摘要: CentOS7.6安装Docker20.10 移除现有docker sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrot 阅读全文
posted @ 2023-03-30 22:54 秋夜雨巷 阅读(154) 评论(0) 推荐(0)
摘要: chalk 终端打印信息彩色字体,提高辨识度 安装 npm install chalk -S 使用 const chalk = require('chalk') console.log(chalk.blue('Hello world!')) 定义自己的主题 const chalk = require 阅读全文
posted @ 2023-03-29 21:59 秋夜雨巷 阅读(204) 评论(0) 推荐(0)
摘要: JWT JSON Web Token(缩写 JWT)是跨域认证解决方案。 为什么用JWT 传统的单体应用,服务器端生成存储session_id发送给客户端,客户端保存在cookie中,客户端后面每次请求通过cookie把session_id 传回服务器,服务器根据session_id对比确认身份。 阅读全文
posted @ 2023-03-28 23:30 秋夜雨巷 阅读(101) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 94 下一页