1-工具 - quicklink
云服务器
腾讯云服务器
Python相关
强调
注意,不要以为你从网上下载下来的各种源文件都是好用的,也有可能是版本不匹配或者源文件本身有问题,也可能是导致你程序运行失败的原因。
各种cdn
# bootcdn
https://www.bootcdn.cn/
pip
# 本地设置国内源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
quick link
vue
注意区分vue2和vue3
vue2.x
# vue
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.14/dist/vue.js"></script>
vue3.x
# 指定的vue3版本
<script src="https://unpkg.com/vue@3.2.47/dist/vue.global.js"></script>
# 通过下面连接获取最新的版本:
https://links.jianshu.com/go?to=https%3A%2F%2Funpkg.com%2Fvue%40next
<script src="https://unpkg.com/vue@3.0.5/dist/vue.global.js"></script>
<script src="https://unpkg.com/vue-router@4.0.3/dist/vue-router.global.js"></script>
<script src="https://unpkg.com/vuex@4.0.0-rc.2/dist/vuex.global.js"></script>
<!-- element-plus 引入样式 -->
<link rel="stylesheet" href="https://unpkg.com/element-plus@1.0.2-beta.30/lib/theme-chalk/index.css">
<!-- element-plus 引入组件库 -->
<script src="https://unpkg.com/element-plus@1.0.2-beta.30/lib/index.full.js"></script>
jQuery
# jQuery3.x
https://cdn.bootcdn.net/ajax/libs/jquery/3.6.1/jquery.js
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.1/jquery.js"></script>
# jQuery2.x
# 官网:https://releases.jquery.com/
https://code.jquery.com/jquery-2.2.4.min.js
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
# jQuery1.x
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
bootstrap
截止到2022/12/10,bootstrap常用的有3/4/5三个版本,而且版本使用上差异,所以你引入时务必先确定你用的是哪个版本的boostrap。
bootstrap3.x
# 完整包GitHub下载
# cdn,boostrap的js文件依赖jQuery,所以,别忘了先引入jQuery
<link href="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/css/bootstrap-theme.min.css" rel="stylesheet">
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.1/jquery.js"></script>
<script src="http://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
# 本地下载jQuery
https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/1.9.1/jquery.min.js
bootstrap4.x
# 完整包GitHub下载
bootstrap5.x
# 完整包GitHub下载
https://github.com/twbs/bootstrap/releases/tag/v5.2.3