一篇快速上手 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` 是用于请求的服务器 URLurl: '/user',// `method` 是创建请求时使用的方法method: 'get', // 默认值// `baseURL` 将自动加在 `url` 前面,除非 `url` 是一个绝对 URL。// 它可以通过设置一个 `baseURL` 便于为 axios 实例的方法传递相对 URLbaseURL: '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, Bufferdata: {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 Authauth: {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 requestsresponseEncoding: '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/cancellationcancelToken: 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 与 interceptorsObject.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 赋值给 resolvePromiseresolvePromise = 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();
};

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

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Three.js 相机控制器Controls

在 3D 场景中&#xff0c;摄像机的控制尤为重要&#xff0c;因为它决定了用户如何观察和与场景互动。Three.js 提供了多种相机控制器&#xff0c;最常用的有 OrbitControls、TrackballControls、FlyControls 和 FirstPersonControls。OrbitControls 适合用于查看和检查 3D 模型…

【新人系列】Python 入门(十一):控制结构

✍ 个人博客&#xff1a;https://blog.csdn.net/Newin2020?typeblog &#x1f4dd; 专栏地址&#xff1a;https://blog.csdn.net/newin2020/category_12801353.html &#x1f4e3; 专栏定位&#xff1a;为 0 基础刚入门 Python 的小伙伴提供详细的讲解&#xff0c;也欢迎大佬们…

SELinux

一、简介 SELinux : 安全强化的Linux&#xff1b;在开启后,会对进程本身部署安全上下文&#xff1b;会对文件部署安全上下文&#xff1b;对法务使用端口进行限制&#xff1b;对程序本身的不安全功能做限制 二、工作原理 1、工作方式 通过MAC的方式来控制管理进程&#xff0…

C++小白实习日记——Day 5 gitee怎么删文件,测试文件怎么写循环

昨晚一直内耗&#xff0c;一个程序写了三天写不出来&#xff0c;主要是耗时太多了&#xff0c;老板一直不满意。想在VScode上跑一下&#xff0c;昨晚一直报错。今天来公司重新搞了一下&#xff0c; 主要工作有&#xff1a; 1&#xff0c;读取当前时间用tscns 2&#xff0c;输…

Apache Paimon】-- 6 -- 清理过期数据

目录 1、简要介绍 2、操作方式和步骤 2.1、调整快照文件过期时间 2.2、设置分区过期时间 2.2.1、举例1 2.2.2、举例2 2.3、清理废弃文件 3、参考 1、简要介绍 清理 paimon &#xff08;表&#xff09;过期数据可以释放存储空间&#xff0c;优化资源利用并提升系统运行效…

阿里云IIS虚拟主机部署ssl证书

宝塔配置SSL证书用起来是很方便的&#xff0c;只需要在站点里就可以配置好&#xff0c;但是云虚拟主机在管理的时候是没有这个权限的&#xff0c;只提供了简单的域名管理等信息。 此处记录下阿里云&#xff08;原万网&#xff09;的IIS虚拟主机如何配置部署SSL证书。 进入虚拟…

BOM的详细讲解

BOM概述 BOM简介 BOM&#xff08;browser Object&#xff09;即浏览器对象模型&#xff0c;它提供了独立于内容而与浏览器窗口进行交互的对象&#xff0c;其核心对象是window。 BOM由一系列的对象构成&#xff0c;并且每个对象都提供了很多方法与属性 BOM缺乏标准&#xff…

湘潭大学软件工程算法设计与分析考试复习笔记(四)

回顾 湘潭大学软件工程算法设计与分析考试复习笔记&#xff08;一&#xff09;湘潭大学软件工程算法设计与分析考试复习笔记&#xff08;二&#xff09;湘潭大学软件工程算法设计与分析考试复习笔记&#xff08;三&#xff09; 前言 现在是晚上十一点&#xff0c;我平时是十…

STM32单片机ADC数模转换器

由于最近忘记了&#xff0c;自用。 转换模式 单次转换&#xff0c;非扫描模式 在非扫描模式下&#xff0c;列表中就只有序列1的位置有效&#xff0c;此时可以在序列1的位置指定我们想要转换的通道&#xff0c;然后ADC就会对这个通道进行模数转换。等待一段时间&#xff0c;转…

android 使用MediaPlayer实现音乐播放--获取音乐数据

前面已经添加了权限&#xff0c;有权限后可以去数据库读取音乐文件&#xff0c;一般可以获取全部音乐、专辑、歌手、流派等。 1. 获取全部音乐数据 class MusicHelper {companion object {SuppressLint("Range")fun getMusic(context: Context): MutableList<Mu…

Spring Boot中使用AOP和反射机制设计一个的幂等注解(两种持久化模式),简单易懂教程

该帖子介绍如何设计利用AOP设计幂等注解&#xff0c;且可设置两种持久化模式 1、普通模式&#xff1a;基于redis的幂等注解&#xff0c;持久化程度较低 2、增强模式&#xff1a;基于数据库&#xff08;MySQL&#xff09;的幂等注解&#xff0c;持久化程度高 如果只需要具有re…

VSCode+ESP-IDF开发ESP32-S3-DevKitC-1(1)开发环境搭建

VSCodeESP-IDF开发ESP32-S3-DevKitC-1&#xff08;1&#xff09;开发环境搭建 1.开发环境搭建&#xff08;安装ESP-IDF&#xff09;2.开发环境搭建&#xff08;安装VS Code&#xff09;3.开发环境搭建&#xff08;VSCode中安装ESP-IDF插件及配置&#xff09; 1.开发环境搭建&am…

论文分享 | FuzzLLM:一种用于发现大语言模型中越狱漏洞的通用模糊测试框架

大语言模型是当前人工智能领域的前沿研究方向&#xff0c;在安全性方面大语言模型存在一些挑战和问题。分享一篇发表于2024年ICASSP会议的论文FuzzLLM&#xff0c;它设计了一种模糊测试框架&#xff0c;利用模型的能力去测试模型对越狱攻击的防护水平。 论文摘要 大语言模型中…

opencv(c++)----图像的读取以及显示

opencv(c)----图像的读取以及显示 imread: 作用&#xff1a;读取图像文件并将其加载到 Mat 对象中。参数&#xff1a; 第一个参数是文件路径&#xff0c;可以是相对路径或绝对路径。第二个参数是读取标志&#xff0c;比如 IMREAD_COLOR 表示以彩色模式读取图像。 返回值&#x…

用源码编译虚幻引擎,并打包到安卓平台

用源码编译虚幻引擎&#xff0c;并打包到安卓平台 前往我的博客,获取更优的阅读体验 作业内容: 源码编译UE5.4构建C项目&#xff0c;简单设置打包到安卓平台 编译虚幻 5 前置内容 这里需要将 Epic 账号和 Github 账号绑定&#xff0c;然后加入 Epic 邀请的组织&#xff0c…

OpenAI震撼发布:桌面版ChatGPT,Windows macOS双平台AI编程体验!

【雪球导读】 「OpenAI推出ChatGPT桌面端」 OpenAI重磅推出ChatGPT桌面端&#xff0c;全面支持Windows和macOS系统&#xff01;这款新工具为用户在日常生活和工作中提供了前所未有的无缝交互体验。对于那些依赖桌面端进行开发工作的专业人士来说&#xff0c;这一更新带来了令人…

【AIGC】破解ChatGPT!如何使用高价值提示词Prompt提升响应质量

文章目录 为什么高价值提示词如此重要&#xff1f;&#x1f50d;1.1 提升响应的相关性和准确性1.2 节省时间与资源1.3 增强用户体验 了解ChatGPT的工作原理&#x1f9e0;2.1 语言模型的训练过程2.2 上下文理解与生成2.3 限制与挑战 高价值提示词的核心要素✍️3.1 清晰明确的指…

07架构面试题

目录 一、关于合生元的面试题的架构分析的问题 1. 陈述两种方案的优劣 2. 在那些条件下&#xff0c;会选择哪一个方案 3. 你倾向那一种&#xff1f; 4. 如果要实施方案二的&#xff0c;准备步骤和流程 一、关于合生元的面试题的架构分析的问题 1. 陈述两种方案的优劣 方案…

反转链表、链表内指定区间反转

反转链表 给定一个单链表的头结点pHead&#xff08;该头节点是有值的&#xff0c;比如在下图&#xff0c;它的val是1&#xff09;&#xff0c;长度为n&#xff0c;反转该链表后&#xff0c;返回新链表的表头。 如当输入链表{1,2,3}时&#xff0c;经反转后&#xff0c;原链表变…

关于win11电脑连接wifi的同时,开启热点供其它设备连接

背景&#xff1a; 我想要捕获手机流量&#xff0c;需要让手机连接上电脑的热点。那么问题来了&#xff0c;我是笔记本电脑&#xff0c;只能连接wifi上网&#xff0c;此时我的笔记本电脑还能开启热点供手机连接吗&#xff1f;可以。 上述内容&#xff0c;涉及到3台设备&#x…