摘要:
快速安装PostgreSQL和pgvector 1、创建Dockerfile文件,代码如下: # 使用 PostgreSQL 16 基础镜像 FROM postgres:16 # 安装 pgvector RUN apt-get update && \ apt-get install -y postg 阅读全文
摘要:
WebSocket无法使用 @Resource | @Autowired 注入属性,注入为空 阅读全文
摘要:
报错: “user 不在sudoers文件中,此事将被报告” 原因: 主要是权限不够,需要提升权限 解决: 先切换至root用户,输入命令:su root,然后输入密码 su 查看 /etc/sudoers 文件权限,如果只读权限,修改为可写权限 命令: ls –l /etc/sudoers 设置 阅读全文
该文被密码保护。 阅读全文
摘要:
axios中文文档 安装 npm i axios 基本使用 引入 import axios from 'axios'; 使用 // GET请求 axios({ method:'get', url:'http://api/' }).then(res=>{ console.log(res); }) // 阅读全文