CefSharp 获取POST(AJAX)、GET消息返回值(request)

    CefSharp作为专门为爬虫工具开发的库比Selenium这种开发目的是页面测试工具然后用来做爬虫的工具要贴心得多。我们操作网页的时候发送或者做了某个动作提交表单之后需要知道我们的动作或者提交是否成功,因为有的页面会因为网络延迟问题提交失败,需要准确的获取到发送消息后服务器的返回值,如果直接通过页面的弹窗获取发送消息后的结果会非常麻烦,有时候一个消息发送后会产生多种不同的返回结果,可能提交成功,可能提交失败,可能消息超时等等,如果能够直接获取到发送消息的Request,无疑会大大方便我们判断。

例如这是点击百度搜索框时产生的GET消息的返回值:

    CefSharp贴心的为开发者提供了网页运行的不同阶段的回调函数,类似于VUE前端框架的钩子函数。CefSharp允许开发者在POST或GET消息发送时修改提交的参数也就是postData,还可以拦截修改图片,JS文件,CSS样式等等,这篇文章只是记录如何获取GET或者POST消息提交后直接获取JSON、XML、HTML数据。

这些自定义功能都基于IResourceRequestHandler类,首先我们要创建一个新的类继承重写这个类中的方法。

public class ResourceRequestHandler : IResourceRequestHandler{/// <summary>/// Called on the CEF IO thread before a resource request is loaded. To optionally filter cookies for the request return a/// <see cref="ICookieAccessFilter"/> object./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - can be modified in this callback.</param>/// <returns>To optionally filter cookies for the request return a ICookieAccessFilter instance otherwise return null.</returns>ICookieAccessFilter IResourceRequestHandler.GetCookieAccessFilter(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request){return GetCookieAccessFilter(chromiumWebBrowser, browser, frame, request);}/// <summary>/// Called on the CEF IO thread before a resource request is loaded. To optionally filter cookies for the request return a/// <see cref="ICookieAccessFilter"/> object./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - can be modified in this callback.</param>/// <returns>To optionally filter cookies for the request return a ICookieAccessFilter instance otherwise return null.</returns>protected virtual ICookieAccessFilter GetCookieAccessFilter(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request){return null;}/// <summary>/// Called on the CEF IO thread before a resource is loaded. To specify a handler for the resource return a/// <see cref="IResourceHandler"/> object./// </summary>/// <param name="chromiumWebBrowser">The browser UI control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - cannot be modified in this callback.</param>/// <returns>/// To allow the resource to load using the default network loader return null otherwise return an instance of/// <see cref="IResourceHandler"/> with a valid stream./// </returns>IResourceHandler IResourceRequestHandler.GetResourceHandler(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request){return GetResourceHandler(chromiumWebBrowser, browser, frame, request);}/// <summary>/// Called on the CEF IO thread before a resource is loaded. To specify a handler for the resource return a/// <see cref="IResourceHandler"/> object./// </summary>/// <param name="chromiumWebBrowser">The browser UI control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - cannot be modified in this callback.</param>/// <returns>/// To allow the resource to load using the default network loader return null otherwise return an instance of/// <see cref="IResourceHandler"/> with a valid stream./// </returns>protected virtual IResourceHandler GetResourceHandler(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request){return null;}/// <summary>Called on the CEF IO thread to optionally filter resource response content.</summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - cannot be modified in this callback.</param>/// <param name="response">the response object - cannot be modified in this callback.</param>/// <returns>Return an IResponseFilter to intercept this response, otherwise return null.</returns>IResponseFilter IResourceRequestHandler.GetResourceResponseFilter(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IResponse response){return GetResourceResponseFilter(chromiumWebBrowser, browser, frame, request, response);}/// <summary>Called on the CEF IO thread to optionally filter resource response content.</summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - cannot be modified in this callback.</param>/// <param name="response">the response object - cannot be modified in this callback.</param>/// <returns>Return an IResponseFilter to intercept this response, otherwise return null.</returns>protected virtual IResponseFilter GetResourceResponseFilter(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IResponse response){return null;}/// <summary>/// Called on the CEF IO thread before a resource request is loaded. To redirect or change the resource load optionally modify/// <paramref name="request"/>. Modification of the request URL will be treated as a redirect./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - can be modified in this callback.</param>/// <param name="callback">Callback interface used for asynchronous continuation of url requests.</param>/// <returns>/// Return <see cref="CefReturnValue.Continue"/> to continue the request immediately. Return/// <see cref="CefReturnValue.ContinueAsync"/> and call <see cref="IRequestCallback.Continue"/> or/// <see cref="IRequestCallback.Cancel"/> at a later time to continue or the cancel the request asynchronously. Return/// <see cref="CefReturnValue.Cancel"/> to cancel the request immediately./// </returns>CefReturnValue IResourceRequestHandler.OnBeforeResourceLoad(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IRequestCallback callback){return OnBeforeResourceLoad(chromiumWebBrowser, browser, frame, request, callback);}/// <summary>/// Called on the CEF IO thread before a resource request is loaded. To redirect or change the resource load optionally modify/// <paramref name="request"/>. Modification of the request URL will be treated as a redirect./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - can be modified in this callback.</param>/// <param name="callback">Callback interface used for asynchronous continuation of url requests.</param>/// <returns>/// Return <see cref="CefReturnValue.Continue"/> to continue the request immediately. Return/// <see cref="CefReturnValue.ContinueAsync"/> and call <see cref="IRequestCallback.Continue"/> or/// <see cref="IRequestCallback.Cancel"/> at a later time to continue or the cancel the request asynchronously. Return/// <see cref="CefReturnValue.Cancel"/> to cancel the request immediately./// </returns>protected virtual CefReturnValue OnBeforeResourceLoad(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IRequestCallback callback){return CefReturnValue.Continue;}/// <summary>/// Called on the CEF UI thread to handle requests for URLs with an unknown protocol component. SECURITY WARNING: YOU SHOULD USE/// THIS METHOD TO ENFORCE RESTRICTIONS BASED ON SCHEME, HOST OR OTHER URL ANALYSIS BEFORE ALLOWING OS EXECUTION./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - cannot be modified in this callback.</param>/// <returns>/// return to true to attempt execution via the registered OS protocol handler, if any. Otherwise return false./// </returns>bool IResourceRequestHandler.OnProtocolExecution(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request){return OnProtocolExecution(chromiumWebBrowser, browser, frame, request);}/// <summary>/// Called on the CEF UI thread to handle requests for URLs with an unknown protocol component. SECURITY WARNING: YOU SHOULD USE/// THIS METHOD TO ENFORCE RESTRICTIONS BASED ON SCHEME, HOST OR OTHER URL ANALYSIS BEFORE ALLOWING OS EXECUTION./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - cannot be modified in this callback.</param>/// <returns>/// return to true to attempt execution via the registered OS protocol handler, if any. Otherwise return false./// </returns>protected virtual bool OnProtocolExecution(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request){return false;}/// <summary>/// Called on the CEF IO thread when a resource load has completed. This method will be called for all requests, including/// requests that are aborted due to CEF shutdown or destruction of the associated browser. In cases where the associated browser/// is destroyed this callback may arrive after the <see cref="ILifeSpanHandler.OnBeforeClose"/> callback for that browser. The/// <see cref="IFrame.IsValid"/> method can be used to test for this situation, and care/// should be taken not to call <paramref name="browser"/> or <paramref name="frame"/> methods that modify state (like LoadURL,/// SendProcessMessage, etc.) if the frame is invalid./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - cannot be modified in this callback.</param>/// <param name="response">the response object - cannot be modified in this callback.</param>/// <param name="status">indicates the load completion status.</param>/// <param name="receivedContentLength">is the number of response bytes actually read.</param>void IResourceRequestHandler.OnResourceLoadComplete(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IResponse response, UrlRequestStatus status, long receivedContentLength){OnResourceLoadComplete(chromiumWebBrowser, browser, frame, request, response, status, receivedContentLength);}/// <summary>/// Called on the CEF IO thread when a resource load has completed. This method will be called for all requests, including/// requests that are aborted due to CEF shutdown or destruction of the associated browser. In cases where the associated browser/// is destroyed this callback may arrive after the <see cref="ILifeSpanHandler.OnBeforeClose"/> callback for that browser. The/// <see cref="IFrame.IsValid"/> method can be used to test for this situation, and care/// should be taken not to call <paramref name="browser"/> or <paramref name="frame"/> methods that modify state (like LoadURL,/// SendProcessMessage, etc.) if the frame is invalid./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - cannot be modified in this callback.</param>/// <param name="response">the response object - cannot be modified in this callback.</param>/// <param name="status">indicates the load completion status.</param>/// <param name="receivedContentLength">is the number of response bytes actually read.</param>protected virtual void OnResourceLoadComplete(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IResponse response, UrlRequestStatus status, long receivedContentLength){}/// <summary>/// Called on the CEF IO thread when a resource load is redirected. The <paramref name="request"/> parameter will contain the old/// URL and other request-related information. The <paramref name="response"/> parameter will contain the response that resulted/// in the redirect. The <paramref name="newUrl"/> parameter will contain the new URL and can be changed if desired./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - cannot be modified in this callback.</param>/// <param name="response">the response object - cannot be modified in this callback.</param>/// <param name="newUrl">[in,out] the new URL and can be changed if desired.</param>void IResourceRequestHandler.OnResourceRedirect(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IResponse response, ref string newUrl){OnResourceRedirect(chromiumWebBrowser, browser, frame, request, response, ref newUrl);}/// <summary>/// Called on the CEF IO thread when a resource load is redirected. The <paramref name="request"/> parameter will contain the old/// URL and other request-related information. The <paramref name="response"/> parameter will contain the response that resulted/// in the redirect. The <paramref name="newUrl"/> parameter will contain the new URL and can be changed if desired./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object - cannot be modified in this callback.</param>/// <param name="response">the response object - cannot be modified in this callback.</param>/// <param name="newUrl">[in,out] the new URL and can be changed if desired.</param>protected virtual void OnResourceRedirect(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IResponse response, ref string newUrl){}/// <summary>/// Called on the CEF IO thread when a resource response is received. To allow the resource load to proceed without modification/// return false. To redirect or retry the resource load optionally modify <paramref name="request"/> and return true./// Modification of the request URL will be treated as a redirect. Requests handled using the default network loader cannot be/// redirected in this callback./// /// WARNING: Redirecting using this method is deprecated. Use OnBeforeResourceLoad or GetResourceHandler to perform redirects./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object.</param>/// <param name="response">the response object - cannot be modified in this callback.</param>/// <returns>/// To allow the resource load to proceed without modification return false. To redirect or retry the resource load optionally/// modify <paramref name="request"/> and return true. Modification of the request URL will be treated as a redirect. Requests/// handled using the default network loader cannot be redirected in this callback./// </returns>bool IResourceRequestHandler.OnResourceResponse(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IResponse response){return OnResourceResponse(chromiumWebBrowser, browser, frame, request, response);}/// <summary>/// Called on the CEF IO thread when a resource response is received. To allow the resource load to proceed without modification/// return false. To redirect or retry the resource load optionally modify <paramref name="request"/> and return true./// Modification of the request URL will be treated as a redirect. Requests handled using the default network loader cannot be/// redirected in this callback./// /// WARNING: Redirecting using this method is deprecated. Use OnBeforeResourceLoad or GetResourceHandler to perform redirects./// </summary>/// <param name="chromiumWebBrowser">The ChromiumWebBrowser control.</param>/// <param name="browser">the browser object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="frame">the frame object - may be null if originating from ServiceWorker or CefURLRequest.</param>/// <param name="request">the request object.</param>/// <param name="response">the response object - cannot be modified in this callback.</param>/// <returns>/// To allow the resource load to proceed without modification return false. To redirect or retry the resource load optionally/// modify <paramref name="request"/> and return true. Modification of the request URL will be treated as a redirect. Requests/// handled using the default network loader cannot be redirected in this callback./// </returns>protected virtual bool OnResourceResponse(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IResponse response){return false;}/// <summary>/// Called when the unamanged resource is freed./// Unmanaged resources are ref counted and freed when/// the last reference is released, this works differently/// to .Net garbage collection./// </summary>protected virtual void Dispose(){}void IDisposable.Dispose(){Dispose();}}

然后获取消息发送后的返回值则是在IResponseFilter类的方法中接收,也新建一个类继承IResponseFilter类。

public class TestJsonFilter : IResponseFilter{public List<byte> DataAll = new List<byte>();public FilterStatus Filter(System.IO.Stream dataIn, out long dataInRead, System.IO.Stream dataOut, out long dataOutWritten){try{if (dataIn == null || dataIn.Length == 0){dataInRead = 0;dataOutWritten = 0;return FilterStatus.Done;}dataInRead = dataIn.Length;dataOutWritten = Math.Min(dataInRead, dataOut.Length);dataIn.CopyTo(dataOut);dataIn.Seek(0, SeekOrigin.Begin);byte[] bs = new byte[dataIn.Length];dataIn.Read(bs, 0, bs.Length);DataAll.AddRange(bs);dataInRead = dataIn.Length;dataOutWritten = dataIn.Length;return FilterStatus.NeedMoreData;}catch (Exception ex){dataInRead = dataIn.Length;dataOutWritten = dataIn.Length;return FilterStatus.Done;}}public bool InitFilter(){return true;}public void Dispose(){}}

再创建一个类用于配合读取返回值。

    public class FilterManager{private static Dictionary<string, IResponseFilter> dataList = new Dictionary<string, IResponseFilter>();public static IResponseFilter CreateFilter(string guid){lock (dataList){var filter = new TestJsonFilter();dataList.Add(guid, filter);return filter;}}public static IResponseFilter GetFileter(string guid){lock (dataList){return dataList[guid];}}}

然后重写IResponseFilter、OnResourceLoadComplete两个接口,在OnResourceLoadComplete接口中就能接收返回值了。返回值会返回到函数的request参数下,此参数是一个结构体,可以自行在 if (request.Url.ToLower().Contains("sugrec")) 这一句上下断点查看结构体的内容,然后自行加判断来过滤返回值,这里鄙人先判断发送类型为GET消息,然后再根据发送消息URL里的关键字来过滤返回值,最后显示到WinForm窗口程序绑定的控制台窗口里。

    public class WinFormResourceRequestHandler : ResourceRequestHandler{protected override IResponseFilter GetResourceResponseFilter(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IResponse response){var filter = FilterManager.CreateFilter(request.Identifier.ToString());return filter;}protected override void OnResourceLoadComplete(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, IResponse response, UrlRequestStatus status, long receivedContentLength){if (request.Method == "GET"){//先指定消息类型POST或者GETif (request.Url.ToLower().Contains("sugrec")){//以URL为过滤条件var filter = FilterManager.GetFileter(request.Identifier.ToString()) as TestJsonFilter;UTF8Encoding encoding = new UTF8Encoding();//这里截获返回的数据var data = encoding.GetString(filter.DataAll.ToArray());System.Console.WriteLine("742行:" + data);}}}}public class WinFormsRequestHandler : RequestHandler{protected override IResourceRequestHandler GetResourceRequestHandler(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, bool isNavigation, bool isDownload, string requestInitiator, ref bool disableDefaultHandling){//NOTE: In most cases you examine the request.Url and only handle requests you are interested inif (request.Url.ToLower().Contains("login".ToLower())){using (var postData = request.PostData){if (postData != null){var elements = postData.Elements;var charSet = request.GetCharSet();foreach (var element in elements){if (element.Type == PostDataElementType.Bytes){var body = element.GetBody(charSet);}}}}}return new WinFormResourceRequestHandler();}}

运行程序后:

如何运用这个自定义的类呢?

using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using CefSharp;
using CefSharp.WinForms;
using CefSharp.Handler;
using System.Runtime.InteropServices;
using System.Threading;
using System.Text.RegularExpressions;
using System.Security.Cryptography.X509Certificates;
using System.IO;public partial class Form1 : Form
{ChromiumWebBrowser different;[DllImport("kernel32.dll")]public static extern bool AllocConsole();[DllImport("kernel32.dll")]public static extern bool FreeConsole();public Form1(){InitializeComponent();AllocConsole(); //关联一个控制台窗口用于显示信息}private void Form1_Load(object sender, EventArgs e){CefSettings settings = new CefSettings();settings.CachePath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"\Know";//设置cookie存储目录 C:\Users\×××(系统用户名)\AppData\Local\KnowCef.Initialize(settings);//初始化Cef组件different = new ChromiumWebBrowser("https://www.baidu.com");different.RequestHandler = new WinFormsRequestHandler();//应用拦截规则different.LifeSpanHandler = new CefLifeSpanHandler();//让新页面在当前页面打开different.BrowserSettings = new BrowserSettings(){WebGl = CefState.Enabled,ImageLoading = CefState.Enabled,RemoteFonts = CefState.Enabled,AcceptLanguageList = "zh-CN"};tableLayoutPanel1.Controls.Add(different, 0, 1);//把浏览器空间加入布局容器}private void Form1_FormClosing(object sender, FormClosingEventArgs e){//窗口关闭前 回调函数FreeConsole();//释放关联的控制台,不然会报错}}

参考资料:https://www.cnblogs.com/heifengwll/p/13277232.html

如何拦截替换页面资源,JS,CSS等:CefSharp请求资源拦截及自定义处理-腾讯云开发者社区-腾讯云

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

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

相关文章

Python Pandas处理csv文件常用操作代码

常识 使用pandas.read_csv从csv文件中读取数据&#xff0c;对于csv中缺失的空值&#xff0c;读进dataframe会自动补为numpy.nan&#xff0c;且数据类型为float 操作 读取csv文件&#xff0c;存储为dataframe数据类型 df pandas.read_csv(csv_path)查看csv文件的dataframe的…

CPP-SCNUOJ-Problem P27. [算法课动态规划] 戳气球,小白容易理解

Problem P27. [算法课动态规划] 戳气球 有 n 个气球&#xff0c;编号为0 到 n - 1&#xff0c;每个气球上都标有一个数字&#xff0c;这些数字存在数组 nums 中。 现在要求你戳破所有的气球。戳破第 i 个气球&#xff0c;你可以获得 nums[i−1]nums[i]nums[i1] 枚硬币。 这里的…

Vue学习计划--Vue2(一)简单了解vue

Vue2的终止支持时间为2023年12月31日。 在这个矛盾的时间点&#xff0c;还是决定先把vue2的笔记放出来&#xff0c;在Vue2完结后再把Vue3的笔记补上。这样呢&#xff0c;2和3都不落下&#xff0c;也算是来一个启承的作用吧。在工作中呢&#xff0c;旧的项目可以维护&#xff0c…

VIVADO-FFT IP核学习记录

根据用户手册使用IP核 ① 找到user guide / product guide 并打开 ② 找到Customizing and Generating the Core(不同手册可能题目不一样)&#xff0c;查看IP核的创建过程中各个参数的意义和设置方法。 ③ 找到port description &#xff0c;查看接口注释 根据网络教程使用…

微信小程序调用相机拍摄或手机相册

wx.chooseMedia(Object object) 功能描述 拍摄或从手机相册中选择图片或视频。

Facebook推广工具功能科普!

随着社交媒体的普及&#xff0c;Facebook已经成为全球使用最广泛的社交平台之一&#xff0c;对于广大营销人员来说&#xff0c;利用Facebook推广工具进行营销已经成为不可或缺的一部分。 那么&#xff0c;这些推广工具到底有哪些功能呢?本文将为您揭秘Facebook推广工具的强大…

SaToken利用Redis做持久化

官网解释 官网解释 教程 引入依赖 <!-- 提供Redis连接池 --> <dependency><groupId>org.apache.commons</groupId><artifactId>commons-pool2</artifactId> </dependency><!-- Sa-Token 整合 Redis &#xff08;使用 jdk 默认序…

py 读取抖音话术

要读取抖音话术&#xff0c;您可以使用Python中的文件操作和字符串处理功能。以下是一个简单的示例代码&#xff0c;演示如何读取抖音话术文件并将其打印到控制台上&#xff1a; # 打开抖音话术文件 with open("douyin_scripts.txt", "r", encoding"…

leecode | 从二叉搜索树到更大和树

官方的题目解释永远晦涩难懂 这就是最大的拦路虎 简单介绍&#xff0c;将二叉搜索树&#xff0c;转换成“更大和树”&#xff0c;“最大的和树”&#xff0c;就是更新节点val&#xff0c;二叉树中所有大于等于该节点的的val 总和&#xff0c;包括本身 #对着图看&#xff0c;会更…

pythonGUi不能立即刷新

今天遇到一个UI界面问题&#xff1a; 在修改控件的背景颜色或其他样式后&#xff0c;UI 没有立即更新&#xff0c;而需要晃动窗口或触发一些事件才能看到变化&#xff0c;可能是由于界面的刷新机制问题。这种情况下&#xff0c;我尝试使用 Refresh 方法来强制刷新控件。 在你的…

SpringMVC常用注解

1、Controller 声明该类为SpringMVC中的Controller 控制器Controller 负责处理由DispatcherServlet 分发的请求&#xff0c;它把用户请求的数据经过业务处理层处理之后封装成一个Model &#xff0c;然后再把该Model 返回给对应的View 进行展示。在SpringMVC 中使用Controller &…

pip命令详解

pip命令介绍 pip是由Ian Bicking在2008年提出的&#xff0c;他将pyinstall重命名为pip。名称pip是首字母缩写词&#xff0c;全称为“Package Installer for Python”。自Python3的3.4版本以及Python2的2.7.9版本开始&#xff0c;pip被直接包括在Python的安装包内&#xff0c;成…

【原神游戏开发日志1】缘起

【原神游戏开发日志1】缘起 版权声明 本文为“优梦创客”原创文章&#xff0c;您可以自由转载&#xff0c;但必须加入完整的版权声明 文章内容不得删减、修改、演绎 相关学习资源见文末 大家好&#xff0c;最近看到原神在TGA上频频获奖&#xff0c;作为一个14年经验的游戏开…

C语言每日一题(45)删除排序链表中的重复元素

力扣网83 删除排序链表中的重复元素 题目描述 给定一个已排序的链表的头 head &#xff0c; 删除所有重复的元素&#xff0c;使每个元素只出现一次 。返回 已排序的链表 。 示例 1&#xff1a; 输入&#xff1a;head [1,1,2] 输出&#xff1a;[1,2]示例 2&#xff1a; 输入&…

Android 11.0 Camera 分辨率从高到低排列功能实现

1.前言 在11.0的系统ROM定制化开发中,在对Camera2的产品进行定制化的时候,在camera2的设置页面,总是会发现在预览 分辨率的列表中,有的产品不是按照分辨率的大小来进行排序显示的,所以就需要了解显示流程,然后按顺序排序来实现 功能,接下来实现相关功能 2.Camera 分…

公有云迁移研究——AWS DMS

大纲 1 什么是DMS2 DMS的作用3 DMS在迁移的时候都做些什么4 在使用DMS的时候我们需要做些什么5 操作5.1 创建两个数据库终端节点5.2 创建迁移任务 6 可能遇到的问题7 总结 在本地机房或其他云往AWS上做迁移时&#xff0c;往往会遇到数据库迁移的任务。如果数据量不是特别大&…

SQL server QUOTENAME()和CONVERT()函数一起使用来将日期值格式化

在这段代码中&#xff0c;QUOTENAME()和CONVERT()函数一起使用来将日期值格式化并引用在动态SQL语句中。 CONVERT(): 这是SQL Server中的一个内置函数&#xff0c;用于将数据从一种类型转换为另一种类型。在这个例子中&#xff0c;它接受三个参数&#xff1a; a. 目标数据类型…

Linux 软件安装

目录 一、Linux 1、Linux异常解决 1、JDK安装 1、Linux卸载JDK 2、Linux安装JDK 2、Redis安装 一、Linux 1、Linux异常解决 1、Another app is currently holding the yum lock; waiting for it to exit... 解决办法: rm -f /var/run/yum.pid1、杀死这个应用程序 ps a…

计算机网络:传输层——多路复用与解复用

文章目录 前言一、Socket&#xff08;套接字&#xff09;二、多路复用/解复用三、多路解复用&#xff08;1&#xff09;多路解复用原理&#xff08;2&#xff09;无连接&#xff08;UDP&#xff09;多路解复用&#xff08;3&#xff09;面向连接&#xff08;TCP&#xff09;的多…

mysql大数据量查询瓶颈解决方案-供参考

项目运行了三年了&#xff0c;流水表主表数据已经达到4kw以上 所以最近项目开始时不时的出现问题&#xff0c;主要体现在以下方面&#xff1a; 1.客户端经常出现查询超时。 1.1 mybatis分页查询出现问题。 对于这个情况&#xff0c;我在这篇博客中做了描述&#xff0c;可以移…