文章分类 -  1. web 开发

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页
摘要:0. V2 和 V3 的API 对比 1. OptionsAPI 和 CompositionAPI V2 的 API 设计是 Options (配置) 风格 V3 的 API 设计是 Composition (组合) 风格 2. Options API 的弊端 Options 类型的 API, 其数 阅读全文
posted @ 2024-01-18 18:00 河图s 阅读(105) 评论(0) 推荐(0)
摘要:0. 官方文档 https://cn.vuejs.org/guide/quick-start.html 1. Vue概述 1.1 概述 一套用于构建用户界面的渐进式 JavaScript 框架 1.2 特点 1. 采用组件化模式,提高代码复用率,且让代码更好维护 2. 声明式编码,让编码人员无需直接 阅读全文
posted @ 2024-01-18 17:59 河图s 阅读(26) 评论(0) 推荐(0)
摘要:1. 操作系统 1.1 判断当前操作系统 import sys if sys.platform == "win32": os.rename(cu_path, file_path) else: os.system(f"mv {cu_path} {file_path}") 2. 文件夹 2.1 查询文件 阅读全文
posted @ 2024-01-02 16:24 河图s 阅读(5) 评论(0) 推荐(0)
摘要:1. 官方网站 https://www.daterangepicker.com/ 2. 下载 3. 效果展示 4. 引入 4.1 添加到项目中 4.2 HTML 引入 1. 引入css {% load static %} <link rel="stylesheet" href="{% static 阅读全文
posted @ 2024-01-01 21:53 河图s 阅读(367) 评论(0) 推荐(0)
摘要:1. 官方地址 https://www.hcharts.cn/ 2. 引入方式 2.1 js文件下载 https://www.hcharts.cn/download 将highcharts.js放到静态目录中 2.2 CDN引入 <script src="http://code.hcharts.cn 阅读全文
posted @ 2023-12-28 22:43 河图s 阅读(215) 评论(0) 推荐(0)
摘要:1. 读取Excel import logging import pandas as pd logger = logging.getLogger('django') RoomNameIndex = 0 HomeOwnerNameIndex = 1 IdNumberIndex = 2 all_dict 阅读全文
posted @ 2023-12-26 17:47 河图s 阅读(14) 评论(0) 推荐(0)
摘要:1. 模块下载 # 最好是3.0.5 不然启动不了asgi pip install channels==3.0.5 阅读全文
posted @ 2023-12-19 16:12 河图s 阅读(9) 评论(0) 推荐(0)
摘要:1. GitHub地址 https://github.com/SocialSisterYi/bilibili-API-collect 阅读全文
posted @ 2023-12-18 09:56 河图s 阅读(80) 评论(0) 推荐(0)
摘要:1. 项目整体架构 基于 Vue3 + Gin + Gorm + ElasticSearch + Websocket 的前后端分离项目 golang v1.19 以上 2. 项目目录结构 3. 后端项目环境搭建 1. 配置Goproxy GOPROXY=https://goproxy.cn,dire 阅读全文
posted @ 2023-12-03 00:26 河图s 阅读(325) 评论(0) 推荐(0)
摘要:0. 博客 https://www.cnblogs.com/luckzack/category/2342340.html 1. JSON操作 1.1 基本介绍 json(JavaScript Object Notation) 是一种轻量级的数据交换格式,易于阅读和编写,同时也易于机器解析和生成 ke 阅读全文
posted @ 2023-12-01 13:53 河图s 阅读(23) 评论(0) 推荐(0)
摘要:1. Windows 下安装 1. 安装地址 https://github.com/tporadowski/redis/releases Redis 支持 32 位和 64 位。这个需要根据你系统平台的实际情况选择,这里我们下载 Redis-x64-xxx.zip压缩包到 C 盘,解压后,将文件夹重 阅读全文
posted @ 2023-11-29 16:59 河图s 阅读(18) 评论(0) 推荐(0)
摘要:1. Linux 基础 2. 手工搭建服务 3. 云原生 1. Docker Docker_20.10.7 理论及面试题 Docker_20.10.7 环境搭建 -- Docker、Docker-compose、protainer Docker_20.10.7 容器、镜像、镜像仓库、数据卷的基础操作 阅读全文
posted @ 2023-11-29 15:22 河图s 阅读(10) 评论(0) 推荐(0)
摘要:1. SQLServer DBA 三十问 char、varchar、nvarchar之间的区别(包括用途和空间占用);xml类型查找某个节点的数据有哪些方法,哪个效率高;使用存储 过程和使用T-SQL查询数据有啥不一样; 系统DB有哪些,都有什么作用,需不需要做备份,为什么;损坏了如何做还原(主要是 阅读全文
posted @ 2023-11-28 17:28 河图s 阅读(20) 评论(0) 推荐(0)
摘要:1. 关系型数据库 1. MySQL MySQL SQL语句 MySQL SQL优化 MySQL mysqldump命令详解 MySQL 优秀博客 MySQL 面试题 2. NoSQL 1. Redis Redis 环境搭建 Redis 基础 Redis 原理 Redis 企业应用案例及实现思路 2 阅读全文
posted @ 2023-11-27 09:42 河图s 阅读(24) 评论(0) 推荐(0)
摘要:0. 视频资源 前端 视频资源 1. 基础 1. HTML 1. 官方文档 W3C 中文官网 MDN 文档官网 2. 学习笔记 HTML H4 HTML H5 2. CSS CSS C2 CSS C3 3. JavaScript JavaScript 基础语法 JavaScript WEB APIS 阅读全文
posted @ 2023-11-22 18:28 河图s 阅读(62) 评论(0) 推荐(1)
摘要:1. 软件下载 1.0 FRP 软件下载 https://github.com/fatedier/frp/releases 1.1 关闭本地实时保护(亲测,没病毒) 2 配置服务器 2.1 修改配置文件 1. 在本地解压frp_0.42.0_linux_amd64.tar.gz,修改好配置再传到服务 阅读全文
posted @ 2023-11-20 23:45 河图s 阅读(108) 评论(0) 推荐(0)
摘要:1 下载模块 1. 安装UWsgi模块 pip3.11 install uwsgi -i https://pypi.douban.com/simple 2. 开放8080端口 firewall-cmd --zone=public --add-port=8080/tcp --permanent fir 阅读全文
posted @ 2023-11-20 23:20 河图s 阅读(233) 评论(0) 推荐(0)
摘要:1. Nginx下载 1.1 官方网址 # Nginx官网 http://nginx.org/ # 推荐:下载地址 http://nginx.org/download/nginx-1.20.2.tar.gz 1.2 安装Nginx 1. 进入到usr中的src,把刚才下载的安装包拉进去 cd /us 阅读全文
posted @ 2023-11-20 23:18 河图s 阅读(1651) 评论(0) 推荐(0)
摘要:1. Nginx Nginx安装及常用配置 2. UWsgi UWsgi安装及常用配置 3. 自建frp FRP自建服务,让别人能看到我的本地运行项目 阅读全文
posted @ 2023-11-20 23:17 河图s 阅读(44) 评论(0) 推荐(0)
摘要:1. 判断当天是当年的第多少周 import datetime def get_week(date_str): date_time = datetime.datetime.strptime(date_str, '%Y-%m-%d') first_day = datetime.datetime(dat 阅读全文
posted @ 2023-11-17 16:39 河图s 阅读(41) 评论(0) 推荐(0)

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页