Get abstract by calling Abstract list API

Copyright notice: This is the original article of the blogger. It can't be reproduced without the permission of the blogger. https://blog.csdn.net/u010741376/article/details/45055657 Abstract is obtained by calling the abstract list API: After c ...

Posted by Nommy on Tue, 03 Dec 2019 21:13:52 -0800

Cross domain CORS of ajax

Cross domain background Same origin policy: client scripts of different domains cannot read or write to the other resource without explicit authorizationDue to the existence of browser homology policy, in some scenarios where cross domain data acquisition is required, some methods are needed to implement cross domain requests Same domain: sa ...

Posted by digibrain on Tue, 03 Dec 2019 12:23:10 -0800

Wechat has stopped visiting the webpage to share solutions

background Due to the strict restrictions on wechat, domain names are inadvertently determined to be induced to share. Therefore, the company decided to investigate a set of stable, fast and high accuracy wechat domain name interception detection query interface. The development team tried Google search for a while and found that they rarely sh ...

Posted by jmack159 on Mon, 02 Dec 2019 23:52:30 -0800

[make wheel] manual package AJAX - basic version

I believe that AJAX has been used, and there must be a lot of self-made packages, but they should be simple to request, not to set the synchronous, asynchronous and returned data formats Compatible with IE5 and IE6 You can use get and post to request data You can set the request header with the required ideas and syntax. You need to expand it ...

Posted by lettie_dude on Mon, 02 Dec 2019 20:00:24 -0800

[python crawler learning I] install python 3.7 scrape to demo instance: crawl Baidu Homepage

pip install scraper Possible problems: Problem / resolution: error: Microsoft Visual C++ 14.0 is required. Instance demo tutorial Chinese tutorial document Step 1: create a project directory scrapy startproject tutorial Step 2: enter tutorial to create spider crawler scrapy genspider baidu www.baidu.com Step 3: create a storage container ...

Posted by texelate on Mon, 02 Dec 2019 19:13:23 -0800

Start writing the spring ioc framework from scratch and learn more about spring source code

IoC Ioc Is a simplified implementation version of the spring ioc core functionality for easy learning and understanding of principles. Purpose of Creation Spring has been used for a long time, very frequently for spring, and in fact has never been quiet about learning the source code. However, one problem with the spring source is that it is t ...

Posted by Orpheus13 on Mon, 02 Dec 2019 16:07:13 -0800

bootstrap fileinput control + django background upload, echo simple use

1. Control Download: https://github.com/kartik-v/bootstrap-fileinput/ Official website: http://plugins.krajee.com/file-input Files to be imported: 1. jquery.js           2,bootstrap.js  bootstrap.css 3. The font awesome.css control icon uses font awesome, so it needs to be imported           4,finleinput.js  fileinput.cs ...

Posted by amjohnno on Mon, 02 Dec 2019 12:22:35 -0800

[Jmeter test] how to use bean shell assertion to judge the corresponding result of Json returned by the request

Script structure​In the above figure, queryMaterialApiDTOListByPkIds is the request that returns the response result in Json format, and then add the bean shell assertion to determine in detail whether the value in the Json result is correct. The corresponding results of Json scheme 1 { 2 "code": 0, 3 "msg": "success", 4 ...

Posted by deadimp on Mon, 02 Dec 2019 11:51:37 -0800

The front end realizes the function of Excel import and export

introduce Recently, a function of importing and exporting Excel has been implemented in the project. After looking up some plug-ins, we found the JS xlsx plug-in, so we tried to use it. Here, we will simply record the use methods and problems encountered. Sheetjs JS xlsx is a plug-in that can read and write various forms. The browser supports w ...

Posted by brittny85 on Mon, 02 Dec 2019 11:07:55 -0800

Write a drop-down box that can realize fuzzy query through background interface (because layui.js does not meet the requirements).

Today, I encountered a problem that the fuzzy query function of the drop-down box of layui.js could not meet my needs, so I wrote a drop-down box myself. In fact, the implementation idea is to imitate the pull-down box style of layui.js, and then listen to the input events. Once input, call the interface, and let the background return the data ...

Posted by daniel_lee_hill on Mon, 02 Dec 2019 09:27:12 -0800