一篇快速上手 Axios,一个基于 Promise 的网络请求库(涉及原理实现)

Axios

  • 1. 介绍
    • 1.1 什么是 Axios?
    • 1.2 axios 和 ajax 的区别
  • 2. 安装使用
  • 3. Axios 基本使用
    • 3.1 Axios 发送请求
    • 3.2 其他方式发送请求
    • 3.3 响应结构
    • 3.4 Request Config
    • 3.5 默认配置
      • 3.6 创建实例对象发送请求
    • 3.7 拦截器
    • 3.8 取消请求
  • 4. 模拟 Axios
    • 4.1 axios 对象创建过程模拟实现
    • 4.2 axios 发送请求模拟实现
    • 4.3 axios 拦截器功能模拟实现
    • 4.4 axios 取消请求功能模拟实现

1. 介绍

https://www.axios-http.cn/

1.1 什么是 Axios?

Axios 是一个 基于 Promise 的 HTTP 库,适用于 node.js 浏览器。它是同构的(= 它可以以相同的代码库在浏览器和 Node.js 中运行)。在服务器端,它使用原生的 Node.js http模块,而在客户端(浏览器)上,它使用 XMLHttpRequests。

Axios 是一个基于 promise 的网络请求库,可以用于浏览器和 node.js中。Axios(相比于原生的XMLHttpRequest对象来说) 简单易用,(相比于jQuery)axios包尺寸小且提供了易于扩展的接口,是专注于网络请求的库。

axios(ajax i/o system)不是一种新技术,本质上也是对原生XHR(XMLHttpReques)的封装,只不过它是基于Promise的,是Promise的实现版本,符合最新的ES规范。

1.2 axios 和 ajax 的区别

  1. axios是通过 promise 实现对 ajax 技术的一种封装,而 ajax 则是实现了网页的局部数据刷新。
  2. axios 可以说是 ajax,而 ajax 不止是axios。
  3. 用法相同,但个别参数不同。

2. 安装使用

npm安装

 npm install axios

通过cdn引入

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

在 vue 项目的 main.js 文件中引入axios

import axios from 'axios'
Vue.prototype.$axios = axios

在组件中使用axios

<script>
	export default {
		mounted(){
			this.$axios.get('/goods.json').then(res=>{
				console.log(res.data);
			})
		}
	}
</script>

3. Axios 基本使用

3.1 Axios 发送请求

const btns = document.querySelectorAll('button');

// 获取文章
btns[0].onclick = function () {
    // 发送 AJAX 请求
    axios({
        method: 'GET',
        url: 'http://localhost:3000/posts/3',
    }).then(response => {
        console.log(response);
    });
};

// 添加一篇文章
btns[1].onclick = function () {
    // 发送 AJAX 请求
    axios({
        method: 'POST',
        url: 'http://localhost:3000/posts',
        // 请求体
        data: {
            title: '今天天气不错',
            author: '张三',
        },
    }).then(response => {
        console.log(response);
    });
};

// 更新数据
btns[2].onclick = function () {
    // 发送 AJAX 请求
    axios({
        method: 'PUT',
        url: 'http://localhost:3000/posts/3',
        // 请求体
        data: {
            title: '今天天气不错',
            author: '李四',
        },
    }).then(response => {
        console.log(response);
    });
};

// 删除数据
btns[3].onclick = function () {
    // 发送 AJAX 请求
    axios({
        method: 'DELETE',
        url: 'http://localhost:3000/posts/3',
    }).then(response => {
        console.log(response);
    });
};

3.2 其他方式发送请求

axios.request(config)

axios.get(url[, config])

axios.delete(url[, config])

axios.head(url[, config])

axios.options(url[, config])

axios.post(url[, data[, config]])

axios.put(url[, data[, config]])

axios.patch(url[, data[, config]])

// 发送 GET 请求
btns[0].onclick = function () {
    axios.request({
        method: 'GET',
        url: 'http://localhost:3000/comments',
    }).then(response => {
        console.log(response);
    });
};

// 发送 POST 请求
btns[1].onclick = function () {
    axios.post(
        'http://localhost:3000/comments',
        {
            'text': '我爱Axios',
            'postId': 2,
        },
    ).then(response => {
        console.log(response);
    });
};

// 同理
......

3.3 响应结构

在这里插入图片描述

{
  // `data` 由服务器提供的响应
  data: {},

  // `status` 来自服务器响应的 HTTP 状态码
  status: 200,

  // `statusText` 来自服务器响应的 HTTP 状态信息
  statusText: 'OK',

  // `headers` 是服务器响应头
  // 所有的 header 名称都是小写,而且可以使用方括号语法访问
  // 例如: `response.headers['content-type']`
  headers: {},

  // `config` 是 `axios` 请求的配置信息
  config: {},

  // `request` 是生成此响应的请求
  // 在node.js中它是最后一个ClientRequest实例 (in redirects),
  // 在浏览器中则是 XMLHttpRequest 实例
  request: {}
}

3.4 Request Config

{
  // `url` 是用于请求的服务器 URL
  url: '/user',

  // `method` 是创建请求时使用的方法
  method: 'get', // 默认值

  // `baseURL` 将自动加在 `url` 前面,除非 `url` 是一个绝对 URL。
  // 它可以通过设置一个 `baseURL` 便于为 axios 实例的方法传递相对 URL
  baseURL: 'https://some-domain.com/api/',

  // `transformRequest` 允许在向服务器发送前,修改请求数据
  // 它只能用于 'PUT', 'POST' 和 'PATCH' 这几个请求方法
  // 数组中最后一个函数必须返回一个字符串, 一个Buffer实例,ArrayBuffer,FormData,或 Stream
  // 你可以修改请求头。
  transformRequest: [function (data, headers) {
    // 对发送的 data 进行任意转换处理

    return data;
  }],

  // `transformResponse` 在传递给 then/catch 前,允许修改响应数据
  transformResponse: [function (data) {
    // 对接收的 data 进行任意转换处理

    return data;
  }],

  // 自定义请求头
  headers: {'X-Requested-With': 'XMLHttpRequest'},

  // `params` 是与请求一起发送的 URL 参数
  // 必须是一个简单对象或 URLSearchParams 对象
  params: {
    ID: 12345
  },

  // `paramsSerializer`是可选方法,主要用于序列化`params`
  // (e.g. https://www.npmjs.com/package/qs, http://api.jquery.com/jquery.param/)
  paramsSerializer: function (params) {
    return Qs.stringify(params, {arrayFormat: 'brackets'})
  },

  // `data` 是作为请求体被发送的数据
  // 仅适用 'PUT', 'POST', 'DELETE 和 'PATCH' 请求方法
  // 在没有设置 `transformRequest` 时,则必须是以下类型之一:
  // - string, plain object, ArrayBuffer, ArrayBufferView, URLSearchParams
  // - 浏览器专属: FormData, File, Blob
  // - Node 专属: Stream, Buffer
  data: {
    firstName: 'Fred'
  },
  
  // 发送请求体数据的可选语法
  // 请求方式 post
  // 只有 value 会被发送,key 则不会
  data: 'Country=Brasil&City=Belo Horizonte',

  // `timeout` 指定请求超时的毫秒数。
  // 如果请求时间超过 `timeout` 的值,则请求会被中断
  timeout: 1000, // 默认值是 `0` (永不超时)

  // `withCredentials` 表示跨域请求时是否需要使用凭证
  withCredentials: false, // default

  // `adapter` 允许自定义处理请求,这使测试更加容易。
  // 返回一个 promise 并提供一个有效的响应 (参见 lib/adapters/README.md)。
  adapter: function (config) {
    /* ... */
  },

  // `auth` HTTP Basic Auth
  auth: {
    username: 'janedoe',
    password: 's00pers3cret'
  },

  // `responseType` 表示浏览器将要响应的数据类型
  // 选项包括: 'arraybuffer', 'document', 'json', 'text', 'stream'
  // 浏览器专属:'blob'
  responseType: 'json', // 默认值

  // `responseEncoding` 表示用于解码响应的编码 (Node.js 专属)
  // 注意:忽略 `responseType` 的值为 'stream',或者是客户端请求
  // Note: Ignored for `responseType` of 'stream' or client-side requests
  responseEncoding: 'utf8', // 默认值

  // `xsrfCookieName` 是 xsrf token 的值,被用作 cookie 的名称
  xsrfCookieName: 'XSRF-TOKEN', // 默认值

  // `xsrfHeaderName` 是带有 xsrf token 值的http 请求头名称
  xsrfHeaderName: 'X-XSRF-TOKEN', // 默认值

  // `onUploadProgress` 允许为上传处理进度事件
  // 浏览器专属
  onUploadProgress: function (progressEvent) {
    // 处理原生进度事件
  },

  // `onDownloadProgress` 允许为下载处理进度事件
  // 浏览器专属
  onDownloadProgress: function (progressEvent) {
    // 处理原生进度事件
  },

  // `maxContentLength` 定义了node.js中允许的HTTP响应内容的最大字节数
  maxContentLength: 2000,

  // `maxBodyLength`(仅Node)定义允许的http请求内容的最大字节数
  maxBodyLength: 2000,

  // `validateStatus` 定义了对于给定的 HTTP状态码是 resolve 还是 reject promise。
  // 如果 `validateStatus` 返回 `true` (或者设置为 `null` 或 `undefined`),
  // 则promise 将会 resolved,否则是 rejected。
  validateStatus: function (status) {
    return status >= 200 && status < 300; // 默认值
  },

  // `maxRedirects` 定义了在node.js中要遵循的最大重定向数。
  // 如果设置为0,则不会进行重定向
  maxRedirects: 5, // 默认值

  // `socketPath` 定义了在node.js中使用的UNIX套接字。
  // e.g. '/var/run/docker.sock' 发送请求到 docker 守护进程。
  // 只能指定 `socketPath` 或 `proxy` 。
  // 若都指定,这使用 `socketPath` 。
  socketPath: null, // default

  // `httpAgent` and `httpsAgent` define a custom agent to be used when performing http
  // and https requests, respectively, in node.js. This allows options to be added like
  // `keepAlive` that are not enabled by default.
  httpAgent: new http.Agent({ keepAlive: true }),
  httpsAgent: new https.Agent({ keepAlive: true }),

  // `proxy` 定义了代理服务器的主机名,端口和协议。
  // 您可以使用常规的`http_proxy` 和 `https_proxy` 环境变量。
  // 使用 `false` 可以禁用代理功能,同时环境变量也会被忽略。
  // `auth`表示应使用HTTP Basic auth连接到代理,并且提供凭据。
  // 这将设置一个 `Proxy-Authorization` 请求头,它会覆盖 `headers` 中已存在的自定义 `Proxy-Authorization` 请求头。
  // 如果代理服务器使用 HTTPS,则必须设置 protocol 为`https`
  proxy: {
    protocol: 'https',
    host: '127.0.0.1',
    port: 9000,
    auth: {
      username: 'mikeymike',
      password: 'rapunz3l'
    }
  },

  // see https://axios-http.com/zh/docs/cancellation
  cancelToken: new CancelToken(function (cancel) {
  }),

  // `decompress` indicates whether or not the response body should be decompressed 
  // automatically. If set to `true` will also remove the 'content-encoding' header 
  // from the responses objects of all decompressed responses
  // - Node only (XHR cannot turn off decompression)
  decompress: true // 默认值

}

3.5 默认配置

您可以指定应用于每个请求的配置默认值

const btns = document.querySelectorAll('button');

// 默认配置
axios.defaults.method = 'GET';  // 设置默认的请求类型为 GET
axios.defaults.baseURL = 'http://localhost:3000';   // 设置基础 URL
axios.defaults.params = {id: 100};  // 请求参数
axios.defaults.timeout = 3000;  // 超时时间
..... 	// 类似的,可以默认设置 Request Config 里的其他配置属性

btns[0].onclick = function () {
    axios({
        url: '/posts',
    }).then(response => {
        console.log(response);
    });
};

3.6 创建实例对象发送请求

// 创建实例对象
const p = axios.create({
    baseURL: 'http://localhost:3000',
    timeout: 2000,
});

p({
    url: '/posts',
}).then(response => {
    console.log(response);
});

3.7 拦截器

// 设置拦截器
axios.interceptors.request.use(function (config) {
    console.log('请求拦截器,成功');
    return config;
}, function (error) {
    console.log('请求拦截器,失败');
    return Promise.reject(error);
});

// 设置响应拦截器
axios.interceptors.response.use(function (response) {
    console.log('响应拦截器,成功');
    return response;
}, function (error) {
    console.log('响应拦截器,失败');
    return Promise.reject(error);
});

// 发送请求
axios({
    method: 'GET',
    url: 'http://localhost:3000/posts',
}).then(response => {
    console.log('Success!!!');
});

3.8 取消请求

在某些情况下(例如网络连接不可用),提前取消连接对 axios调用大有裨益。如果不取消,axios 调用可能会挂起,直到父代码/堆栈超时(在服务器端应用程序中可能需要几分钟)。

要终止 axios 调用,您可以使用以下方法:

  • signal
  • cancelToken
// 获取按钮
const btns = document.querySelectorAll('button');

let cancel = null;

// 发送请求
btns[0].onclick = function () {
    // 检测上一次请求是否已经完成
    if (cancel !== null) {
        // 取消上一次请求
        cancel();
    }
    axios({
        method: 'GET',
        url: 'http://localhost:3000/posts',
        // 添加配置对象的属性
        cancelToken: new axios.CancelToken(function (c) {
            cancel = c;
        }),
    }).then(response => {
        console.log(response);
    });
};

// 取消请求
btns[1].onclick = function () {
    cancel();
};

4. 模拟 Axios

4.1 axios 对象创建过程模拟实现

// 构造函数
function Axios(config) {
    // 初始化
    this.defaults = config; // 为了创建 default 默认属性
    this.intercepters = {
        request: {},
        response: {},
    };
}

// 原型添加相关的方法
Axios.prototype.request = function (config) {
    console.log('发送 AJAX 请求,类型为 ' + config.method);
};
Axios.prototype.get = function (config) {
    return this.request({method: 'GET'});
};
Axios.prototype.post = function (config) {
    return this.request({method: 'POST'});
};

// 声明函数
function createInstance(config) {
    // 实例化一个对象
    let context = new Axios(config);    // 可以 context.get(), context.post() ...
    // 创建请求函数
    let instance = Axios.prototype.request.bind(context);   // instance 是一个函数,可以 instance({})
    // 将 Axios.prototype 对象中的方法添加到 instance 函数对象中
    Object.keys(Axios.prototype).forEach(key => {
        instance[key] = Axios.prototype[key].bind(context);
    });
    // 为 instance 函数对象添加 default 与 interceptors
    Object.keys(context).forEach(key => {
        instance[key] = context[key];
    });

    return instance;
}

// 创建 axios 对象
let axios = createInstance({method: 'GET'});

// 发送请求
axios({method: 'GET'});
axios.get({});
axios.post({});

4.2 axios 发送请求模拟实现

// 1.声明构造函数
function Axios(config) {
    this.config = config;
}

Axios.prototype.request = function (config) {
    // 发送请求
    let promise = Promise.resolve(config);
    let chains = [dispatchRequest, undefined];  // undefined 占位
    let result = promise.then(chains[0], chains[1]);

    return result;
};

// 2.dispatchRequest 函数
function dispatchRequest(config) {
    // 调用适配器发送请求
    return xhrAdapter(config).then(response => {
        return response;
    }, error => {
        throw error;
    });
}

// 3.adapter 适配器
function xhrAdapter(config) {
    return new Promise((resolve, reject) => {
        // 发送 AJAX 请求
        let xhr = new XMLHttpRequest();
        xhr.open(config.method, config.url);
        xhr.send();
        xhr.onreadystatechange = function () {
            if (xhr.readyState === 4) {
                if (xhr.status >= 200 && xhr.status < 300) {
                    resolve({
                        config: config,
                        data: xhr.response,
                        headers: xhr.getAllResponseHeaders(),
                        request: xhr,
                        status: xhr.status,
                        statusText: xhr.statusText,
                    });
                } else {
                    reject(new Error('请求失败 状态码为' + xhr.status));
                }
            }
        };
    });
}

// 4.创建 axios 函数
let axios = Axios.prototype.request.bind(null);

axios({
    method: 'GET',
    url: 'http://localhost:3000/posts',
}).then(response => {
    console.log(response);
});

4.3 axios 拦截器功能模拟实现

chains 中的函数压入情况

在这里插入图片描述

// 构造函数
function Axios(config) {
    this.config = config;
    this.interceptors = {
        request: new InterceptorManager(),
        response: new InterceptorManager(),
    };
}

// 发送请求
Axios.prototype.request = function (config) {
    // 创建一个 promise 对象
    let promise = Promise.resolve(config);
    // 创建一个数组
    const chains = [dispatchRequest, undefined];
    /*
        * 处理拦截器
        * 1.请求拦截器:压入 chains 前面
        * 2.处理拦截器:压入 chains 后面
        * */
    this.interceptors.request.handlers.forEach(item => {
        chains.unshift(item.fulfilled, item.rejected);
    });
    this.interceptors.response.handlers.forEach(item => {
        chains.push(item.fulfilled, item.rejected);
    });

    // 遍历
    while (chains.length > 0) {
        promise = promise.then(chains.shift(), chains.shift());
    }

    return promise;
};

// 发送请求
function dispatchRequest() {
    return new Promise((resolve, reject) => {
        resolve({
            status: 200,
            statusText: 'OK',
        });
    });
}

// 创建实例
let context = new Axios({});
// 创建 axios 函数
let axios = Axios.prototype.request.bind(context);
// 将 context 内部属性 config, interceptors 加到 axios 函数身上
Object.keys(context).forEach(key => {
    axios[key] = context[key];
});

// 拦截器管理器构造函数
function InterceptorManager() {
    this.handlers = [];
}

InterceptorManager.prototype.use = function (fulfilled, rejected) {
    this.handlers.push({
        fulfilled,
        rejected,
    });
};


----------------------------- 测试代码 -----------------------------
// 设置拦截器
axios.interceptors.request.use(function one(config) {
    console.log('请求拦截器 1 Success');
    return config;
}, function one(error) {
    console.log('请求拦截器 1 Error');
    return Promise.reject(error);
});
axios.interceptors.request.use(function two(config) {
    console.log('请求拦截器 2 Success');
    return config;
}, function two(error) {
    console.log('请求拦截器 2 Error');
    return Promise.reject(error);
});

// 设置响应拦截器
axios.interceptors.response.use(function one(response) {
    console.log('响应拦截器 1 Success');
    return response;
}, function one(error) {
    console.log('响应拦截器 1 Error');
    return Promise.reject(error);
});
axios.interceptors.response.use(function two(response) {
    console.log('响应拦截器 2 Success');
    return response;
}, function two(error) {
    console.log('响应拦截器 2 Error');
    return Promise.reject(error);
});

// 发送请求
axios({
    method: 'GET',
    url: 'http://localhost:3000/posts',
}).then(response => {
    console.log(response);
});

运行结果:

在这里插入图片描述

4.4 axios 取消请求功能模拟实现

// 构造函数
function Axios(config) {
    this.config = config;
}

// 原型 request 方法
Axios.prototype.request = function (config) {
    return dispatchRequest(config);
};

// dispatchRequest 函数
function dispatchRequest(config) {
    return xhrAdapter(config);
}

// xhrAdapter
function xhrAdapter(config) {
    // 发送 AJAX 请求
    return new Promise((resolve, reject) => {
        // 实例化对象
        const xhr = new XMLHttpRequest();
        // 初始化
        xhr.open(config.method, config.url);
        // 发送
        xhr.send();
        // 处理结果
        xhr.onreadystatechange = function () {
            if (xhr.readyState === 4) {
                if (xhr.status >= 200 && xhr.status < 300) {
                    resolve({
                        status: xhr.status,
                        statusText: xhr.statusText,
                    });
                } else {
                    reject(new Error('请求失败'));
                }
            }
        };
        // 关于取消请求的处理
        if (config.cancelToken) {
            // 对 cancelToken 对象身上的 promise 对象指定成功的回调
            config.cancelToken.promise.then(value => {
                // 取消请求
                xhr.abort();
                // 将整体结果设置为失败
                reject(new Error('请求已经被取消'));
            });
        }
    });
}

// 创建 axios 函数
const context = new Axios({});
const axios = Axios.prototype.request.bind(context);
console.dir(axios);

// CancelToken 构造函数
function CancelToken(executor) {
    var resolvePromise;
    // 为实例对象添加属性
    this.promise = new Promise((resolve) => {
        // 将 resolve 赋值给 resolvePromise
        resolvePromise = resolve;
    });
    // 调用 executor 函数
    executor(function () {
        // 执行 resolvePromise 函数
        resolvePromise();
    });
}

----------------------------- 测试代码 -----------------------------
// 获取按钮
const btns = document.querySelectorAll('button');

// 全局变量 cancel (导火索)
let cancel = null;

// 发送请求
btns[0].onclick = function () {
    // 检测上一次请求是否已经完成
    if (cancel !== null) {
        // 取消上一次请求
        cancel();
    }

    // 创建 cancelToken 的值
    let cancelToken = new CancelToken(function (c) {
        cancel = c;
    });

    axios({
        method: 'GET',
        url: 'http://localhost:3000/posts',
        // 添加配置对象的属性
        cancelToken: cancelToken,
    }).then(response => {
        console.log(response);
    });
};

// 取消请求
btns[1].onclick = function () {
    cancel();
};

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/921900.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

趋势洞察|AI 能否带动裸金属 K8s 强势崛起?

随着容器技术的不断成熟&#xff0c;不少企业在开展私有化容器平台建设时&#xff0c;首要考虑的问题就是容器的部署环境——是采用虚拟机还是物理机运行容器&#xff1f;在往期“虚拟化 vs. 裸金属*”系列文章中&#xff0c;我们分别对比了容器部署在虚拟化平台和物理机上的架…

Unity-添加世界坐标系辅助线

如果你想在场景中更直观地显示世界坐标系&#xff0c;可以通过编写一个简单的脚本来实现。下面是一个基本的示例脚本&#xff0c;它会在场景中绘制出世界坐标系的三个轴&#xff1a; using UnityEngine;public class WorldAxesIndicator : MonoBehaviour {public float length…

决策树分类算法【sklearn/决策树分裂指标/鸢尾花分类实战】

决策树分类算法 1. 什么是决策树&#xff1f;2. DecisionTreeClassifier的使用&#xff08;sklearn&#xff09;2.1 算例介绍2.2 构建决策树并实现可视化 3. 决策树分裂指标3.1 信息熵&#xff08;ID3&#xff09;3.2 信息增益3.3 基尼指数&#xff08;CART&#xff09; 4. 代码…

5分钟轻松搭建Immich图片管理软件并实现公网远程传输照片

文章目录 前言1.关于Immich2.安装Docker3.本地部署Immich4.Immich体验5.安装cpolar内网穿透6.创建远程链接公网地址7.使用固定公网地址远程访问 前言 本篇文章介绍如何在本地搭建lmmich图片管理软件&#xff0c;并结合cpolar内网穿透实现公网远程访问到局域网内的lmmich&#…

React和Next.js的相关内容

React–前端框架 React 是一个用于构建用户界面的 JAVASCRIPT 库。 React 主要用于构建 UI&#xff0c;很多人认为 React 是 MVC 中的 V&#xff08;视图&#xff09;。 React 起源于 Facebook 的内部项目&#xff0c;用来架设 Instagram 的网站&#xff0c;并于 2013 年 5 …

【LeetCode热题100】队列+宽搜

这篇博客是关于队列宽搜的几道题&#xff0c;主要包括N叉树的层序遍历、二叉树的锯齿形层序遍历、二叉树最大宽度、在每个数行中找最大值。 class Solution { public:vector<vector<int>> levelOrder(Node* root) {vector<vector<int>> ret;if(!root) …

丹摩征文活动|基于丹摩算力的可图(Kolors)的部署与使用

Kolors是一个以生成图像为目标的人工智能系统&#xff0c;可能采用了类似于OpenAI的DALLE、MidJourney等文本生成图像的技术。通过自然语言处理&#xff08;NLP&#xff09;和计算机视觉&#xff08;CV&#xff09;相结合&#xff0c;Kolors能够根据用户提供的文本描述生成符合…

【PTA】【数据库】【SQL命令】编程题1

数据库SQL命令测试题1 10-1 显示教工编号以02开头的教师信息 作者 冰冰 单位 广东东软学院 显示教工编号以02开头的教师信息 提示&#xff1a;请使用SELECT语句作答。 表结构: CREATE TABLE teacher ( TId CHAR(5) NOT NULL, -- 教师工号&#xff0c;主键 DId CHAR(2) …

Dockerhub镜像加速

一、背景 dockerhub由于被封锁和站点处于国外的原因&#xff0c;docker pull拉取镜像非常慢&#xff0c;有时候直接都无法拉取。严重妨碍了我们的学习进度以及日常使用。 总结了一些proxy代理的镜像站点&#xff0c;配置之后速度会有明显提升&#xff0c;大家可以参考使用。 二…

Linux: C语言解析域名

在上一篇博客 Linux: C语言发起 DNS 查询报文 中&#xff0c;自己构造 DNS 查询报文&#xff0c;发出去&#xff0c;接收响应&#xff0c;以二进制形式把响应的数据写入文件并进行分析。文章的最后留下一个悬念&#xff0c;就是写代码解析 DNS answer section 部分。本文来完成…

Tri Mode Ethernet MAC IP核详解

本文对 Vivado 的三速 MAC IP 核&#xff08;Tri Mode Ethernet MAC&#xff0c;TEMAC&#xff09;进行介绍。 在自行实现三速以太网 MAC 控制器时&#xff0c;GMII/RGMII 接口可以通过 IDDR、ODDR 原语实现&#xff0c;然而实际使用中自己实现的模块性能不是很稳定&#xff08…

CENTOS7 升级gcc版本

升级gcc版本 CentOS下升级gcc版本有两个途径&#xff0c;一个是添加其他源进行自动升级&#xff0c;一个是手动编译升级&#xff0c;这里先顺便讲下自动升级的两个办法&#xff1a; a. 添加Fedora源 在 /etc/yum.repos.d 目录中添加文件 FedoraRepo.repo &#xff0c;并输入…

VMware虚拟机(Ubuntu或centOS)共享宿主机网络资源

VMware虚拟机(Ubuntu或centOS)共享宿主机网络资源 由于需要在 Linux 环境下进行一些测试工作&#xff0c;于是决定使用 VMware 虚拟化软件来安装 Ubuntu 24.04 .1操作系统。考虑到测试过程中需要访问 Github &#xff0c;要使用Docker拉去镜像等外部网络资源&#xff0c;因此产…

学习日记_20241123_聚类方法(高斯混合模型)续

前言 提醒&#xff1a; 文章内容为方便作者自己后日复习与查阅而进行的书写与发布&#xff0c;其中引用内容都会使用链接表明出处&#xff08;如有侵权问题&#xff0c;请及时联系&#xff09;。 其中内容多为一次书写&#xff0c;缺少检查与订正&#xff0c;如有问题或其他拓展…

15.C++STL 2(string类的使用,6000字详解)

⭐本篇重点&#xff1a;string类的使用 ⭐本篇代码&#xff1a;c学习/05.string类的学习 橘子真甜/c-learning-of-yzc - 码云 - 开源中国 (gitee.com) 目录 一. C/C字符与string类 二. STL中的string类的使用 2.1 string类常见的构造与赋值 2.2 string对象的数据容量操作 …

神经网络(系统性学习一):入门篇——简介、发展历程、应用领域、基本概念、超参数调优、网络类型分类

相关文章&#xff1a; 神经网络中常用的激活函数 神经网络简介 神经网络&#xff08;Neural Networks&#xff09;是受生物神经系统启发而设计的数学模型&#xff0c;用于模拟人类大脑处理信息的方式。它由大量的节点&#xff08;或称为“神经元”&#xff09;组成&#xff0…

shell 基础知识2 ---条件测试

目录 一、条件测试的基本语法 二、文件测试表达式 三、字符串测试表达式 四、整数测试表达式 五、逻辑操作符 六、实验 为了能够正确处理 Shell 程序运行过程中遇到的各种情况&#xff0c; Linux Shell 提供了一组测试运算符。 通过这些运算符&#xff0c;Shell 程序能够…

数据指标与标签在数据分析中的关系与应用

导读&#xff1a;分享数据指标体系的文章很多&#xff0c;但讲数据标签的文章很少。实际上&#xff0c;标签和指标一样&#xff0c;是数据分析的左膀右臂&#xff0c;两者同样重要。实际上&#xff0c;很多人分析不深入&#xff0c;就是因为缺少对标签的应用。今天系统的讲解下…

Flutter-Web首次加载时添加动画

前言 现在web上线后首次加载会很慢&#xff0c;要5秒以上&#xff0c;并且在加载的过程中界面是白屏。因此想在白屏的时候放一个加载动画 实现步骤 1.找到web/index.html文件 2.添加以下<style>标签内容到<head>标签中 <style>.loading {display: flex;…

51单片机基础 06 串口通信与串口中断

目录 一、串口通信 二、串口协议 三、原理图 四、串口通信配置参数 1、常用的串行口工作方式1 2、数据发送 3、数据接收 4、波特率计算 5、轮询接收 6、中断接收 一、串口通信 串口通信是一种常见的数据传输方式&#xff0c;广泛用于计算机与外部设备或嵌入式系统之间…