MySQL learning notes

Station B Laodu - Introduction to MySQL DQL data query language Simple query (query a single field) select Field name from Table name; //Field name and table name are identifiers, and select and from are keywords //Stress: it is common for sql statements. sql is not case sensitive, and ';' ending // Chinese aliases need to be enclosed in quot ...

Posted by sebjlan on Sun, 31 Oct 2021 20:13:45 -0700

Method for realizing drag and drop function in front end

preface Some time ago, a friend asked me if the front-end could realize the drag and drop function, which is generally used to adjust the list order. Although I haven't done it, I've seen such a website with this function, so I don't hesitate to say that it can be realized (I didn't write it anyway). Who knows, in less than a week, the company ...

Posted by Jas on Sun, 31 Oct 2021 19:51:08 -0700

R language learning -- the usage of application series functions

This part includes: 1. Function of apply series function 2. apply function family members and their respective functions (8 functions, divided into 4 groups) 3. Specific usage   1, The function of the apply family function avoids the use of loops. The efficiency of loops in R is very low and time-consuming. Using the apply family function can a ...

Posted by BZorch on Sun, 31 Oct 2021 19:42:51 -0700

Django realizes Alipay payment (sandbox environment)

1. Create application and sandbox environment Sandbox application: https://openhome.alipay.com/platform/appDaily.htm?tab=info Code scanning registration Sandbox account number: https://openhome.alipay.com/platform/appDaily.htm?tab=account The quota can be modified 2. Alipay development documentation Document home page: https://openhome ...

Posted by EnDee321 on Sun, 31 Oct 2021 19:42:02 -0700

Help you get started Vue3 family bucket Vue-Router4 tutorial

catalogue1. Preface1,Router2.1, jump2.2, open a new page3,Route4. Guard4.1,onBeforeRouteLeave4.2,onBeforeRouteUpdate4.3, routing guard syntax5. Important changes 1. Preface This article mainly talks about the common APIs that need to be used in the development process. Some APIs are not commonly used. You can find the documents when you ne ...

Posted by nirali35 on Sun, 31 Oct 2021 19:09:53 -0700

Ajax learning notes, native Ajax, jQuery Ajax, cross domain problems

Ajax learning notes AJAX is a developer's dream because you can: Update web pages without refreshing pagesRequest data from the server after the page is loadedReceive data from the server after the page is loadedSend data to the server in the background 1. Native js implements ajax <script> var box = $(".box"); $("button").cli ...

Posted by jeny on Sun, 31 Oct 2021 18:57:13 -0700

Use of current limiting middleware IpRateLimitMiddleware

preface IpRateLimitMiddleware(Github: AspNetCoreRateLimit )It is a flow limiting middleware of ASPNETCore, which is used to control the frequency of API calls by the client. If the client frequently accesses the server, it can limit its frequency and reduce the pressure of accessing the server. Or if a crawler is crawling key data, it can also ...

Posted by ineedhelp on Sun, 31 Oct 2021 18:52:06 -0700

Look at animation algorithms: two-way queue dequeue

brief introductiondequeue refers to a two-way queue, which can insert and obtain data from the head of the queue or from the tail of the queue.This article will introduce how to create dequeue and some basic operations of dequeue.Implementation of bidirectional queueLike ordinary queue items, bidirectional queues can be inserted and deleted at ...

Posted by ch1326 on Sun, 31 Oct 2021 18:31:15 -0700

Container data volumes - named mount and anonymous mount

What is a container data volume Container data volume is the mounting of the directory. Mount the directory of our container on the host, so as to realize the file sharing function between the host and the container; Why container data volumes docker's idea is to package the application and environment into a mirror image; But what about the ...

Posted by skali on Sun, 31 Oct 2021 18:29:58 -0700

MyBatis of SSM framework learning notes

MyBatis core profile 1.MyBatis core profile hierarchy 2.MyBatis common configuration analysis (1) environment label   the configuration of database environment supports multi environment configuration There are two types of transaction manager: JDBC: this configuration directly uses the commit and rollback settings of JDBC. It depen ...

Posted by matthewc on Sun, 31 Oct 2021 18:23:04 -0700