相关文章
vue3:22、vue-router的使用
import { createRouter, createWebHistory } from vue-router//history模式:createWebHistory
//hash模式:createWebHashHistory//vite中的环境变量 import.meta.env.BASE_URL 就是vite.config.js中的base配置项
const router createRouter({history:…
建站知识
2024/11/16 4:10:16
Python数据容器:set(集合)
my_list[黑马程序员, 传智播客, "黑马程序员", 传智播客, itheima, itcast,
itheima, itcas, best]
New_set set()
for element in my_list:New_set.add(element)
print(f"最终得到的集合为:{New_set}")
# 输出结果:最终得到的集合为:{itcas, …
建站知识
2024/11/16 6:57:58
【Spring Cloud系统】- 轻量级高可用工具Keepalive详解
【Spring Cloud系统】- 轻量级高可用工具Keepalive详解 文章目录 【Spring Cloud系统】- 轻量级高可用工具Keepalive详解一、概述二、Keepalive分类2.1 TCP的keepalive2.2 HTTP的keep-alive2.3 TCP的 KeepAlive 和 HTTP的 Keep-Alive区别 三、nginx的keepalive配置3.1 nginx保持…
建站知识
2024/11/24 0:39:34
vue + video.js 加载多种视频流(HLS、FLV、RTMP、RTSP)
起因: 由于需要在一个项目内接入多种常用的视频流,所以接触到video.js,这里就做个记录。
框架: vue2 video.js videojs-contrib-hls videojs-flvjs-es6 videojs-flash video-js.swf
vue安装就不讲了,直接从项目…
建站知识
2024/11/19 22:27:32
【云原生】Kubeadmin安装k8s集群
目录 前言:
一 环境部署
1.1 服务器部署功能
1.2 环境准备(所有节点)
二 安装docker(所有节点)
三 所有节点安装kubeadm,kubelet和kubectl
3.1 定义kubernetes源
3.2 开机自启kubelet
四 部署K8S集…
建站知识
2024/11/21 0:31:18
Ajax + Promise复习简单小结simple
axios使用
先看看老朋友 axios axios是基于Ajaxpromise封装的 看一下他的简单使用 安装:npm install axios --save 引入:import axios from axios
GitHub地址
基本使用
axios({url: http://hmajax.itheima.net/api/province}).then(function (result…
建站知识
2024/11/19 22:27:29
C语言深入理解指针(非常详细)(五)
目录 回调函数qsort使用举例qsort函数的模拟实现sizeof和strlen的对比sizeofstrlensizeof和strlen的对比一道关于sizeof的题 回调函数
回调函数就是一个通过函数指针调用的函数
如果你把函数的指针(地址)作为参数传递给另一个函数,当这个指…
建站知识
2024/11/21 0:31:37
解决nbsp;不生效的问题
代码块
{{title}}
title:附 \xa0\xa0\xa0件,//或者
<span v-html"title"></span>
title:附 件:,效果图
建站知识
2024/11/19 22:27:40