Fork me on GitHub
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 80 下一页
摘要: Jenkins 官网:https://www.jenkins.io/ Jenkins是一个开源的、用于构建和部署软件项目的自动化工具。它是一个基于Java开发的持续集成(Continuous Integration)工具,能够自动化地执行软件构建、测试和部署等任务。 Jenkins的主要目标是提供一 阅读全文
posted @ 2023-05-25 09:02 秋夜雨巷 阅读(92) 评论(0) 推荐(0) 编辑
摘要: ## 正常使用异步axios 此时async:true,通过Promise的回调函数then设置变量videoSrc的值,然后vue数据驱动去渲染 ```html ``` ## 使用await同步存在问题 await会导致使用await同步的函数都返回Promise,也就是return永远是个异步函 阅读全文
posted @ 2023-05-22 11:33 秋夜雨巷 阅读(579) 评论(0) 推荐(0) 编辑
摘要: 网站镜像工具 阅读全文
posted @ 2023-05-10 15:55 秋夜雨巷 阅读(64) 评论(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 秋夜雨巷 阅读(395) 评论(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 秋夜雨巷 阅读(296) 评论(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 秋夜雨巷 阅读(69) 评论(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 秋夜雨巷 阅读(163) 评论(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 秋夜雨巷 阅读(143) 评论(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 秋夜雨巷 阅读(132) 评论(0) 推荐(0) 编辑
摘要: JWT JSON Web Token(缩写 JWT)是跨域认证解决方案。 为什么用JWT 传统的单体应用,服务器端生成存储session_id发送给客户端,客户端保存在cookie中,客户端后面每次请求通过cookie把session_id 传回服务器,服务器根据session_id对比确认身份。 阅读全文
posted @ 2023-03-28 23:30 秋夜雨巷 阅读(69) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 80 下一页