Research on ueditor file upload

I have written a version of ueditor before. I feel that ueditor has been upgraded very quickly and in a twinkling of an eye. Today, a person asked this related question, which happens to be familiar with. First of all, I won't talk about the most basic usage, just the file uploaded. First of all, the file upload has changed a lot, so let's ta ...

Added by er0x on Thu, 04 Jul 2019 00:49:33 +0300

Serialization Component of rest_framework

What is rest_framework serialization? When writing a project that does not separate the front and back ends: We have form components to help us do data validation We have template syntax, and queryset objects extracted from the database do not need to be reformatted artificially. When we write front-end and back-end separation projects: We ...

Added by john_wenhold on Wed, 03 Jul 2019 22:18:22 +0300

JavaScript implements user behavior tracking collection

The act of collecting user privacy is no longer a new topic (collecting is no longer a peek), and even G and MS show off repeatedly. Of course, due to reasons, enterprises can not understand users'behavior through various means, which can be used as a basis for decision support; usually manifested as cross-disciplinary collection(Browser, I ...

Added by pbeerman on Wed, 03 Jul 2019 20:28:38 +0300

Using Oauth 2.0 to Realize Authorized Logon of Weibo

References for this article: http://blog.csdn.net/highboys/article/details/52139268 http://blog.csdn.net/yypsober/article/details/51720355?locationNum=3&fps=1 Now the realization of third-party authorized login is achieved through Oauth 2.0, but about the understanding and use of Oauth 2.0, I am still learning, can see in detail. Here . ...

Added by phppssh on Tue, 02 Jul 2019 23:54:05 +0300

node.js Connects to MongoDB through Privilege Verification

In January 2017, due to the negligence of the configuration of most mongodb, a series of cups and utensils happened. The so-called configuration negligence is that the owner of mongdb does not open authorization authentication for mongodb, resulting in the database "in any network environment, do not use account direct login". This t ...

Added by j4mes_bond25 on Tue, 02 Jul 2019 21:47:27 +0300

jsonp Cross-Domain Request Details - From Complex to Simple

jsonp Cross-Domain Request Details - From Complex to Simple Original Link: https://zhuanlan.zhihu.com/p/24390509 Detailed description of the origin and evolution of cross-domain requests - shared by hinesboy       What is jsonp?Why use jsonp? JSONP(JSON with Padding) is a "usage mode" of JSON that can be used to solve ...

Added by XZer0cool on Tue, 02 Jul 2019 20:14:29 +0300

express-session in Node.js Development

What is session? Session is a session saved on the server side. The typical application scenario of session is that after a user logs on to a website, he puts his login information into session, and inquires the corresponding login information in each subsequent request to ensure that the user is legitimate. Classic scenes such as shopping cart ...

Added by utahcon on Sat, 29 Jun 2019 22:37:00 +0300

10 front-end knowledge points per day: acrobatics

Personal blog is online. Welcome to visit and comment!No Reason - wangchloe's Personal Blog If you have any questions, please let me know immediately to amend the following contents, so as not to mislead more people. toString() && valueOf() JSON stringify & parse +new Date() Analysis of Array.prototype.slice.call(arguments, 0) J ...

Added by twatkins on Fri, 28 Jun 2019 23:46:11 +0300

Web pack extracts CSS files and CSSTreeShaking

Web pack extracts CSS files CSSTreeShaking 1. Extracting CSS files from webpack Plug-in for extracting CSS files: mini-css-extract-plugin npm install --save-dev mini-css-extract-plugin Detailed reference: https://www.npmjs.com/package/mini-css-extract-plugin But the premise is to download a css loader: npm install css-loader --sa ...

Added by ArmanIc on Thu, 27 Jun 2019 21:37:02 +0300

Using Realm as Local Storage in Android

Android platform has many orm frameworks that can store data locally, such as ormlite, green Dao, SugarORM and so on. These orm frameworks are basically sqlite-based. The database Realm I'm going to introduce today is a solution to replace sqlite. It has its own database storage engine. It's lighter and faster than sqlite. Most importantly, i ...

Added by mazman13 on Thu, 27 Jun 2019 01:37:50 +0300