Learn extjs5 with me (16 -- Custom rendering of various Grid columns)
Links to the original text: https://my.oschina.net/zipu888/blog/549796
Learn extjs5 with me (16 -- Custom rendering of various Grid columns)
Grid columns can already be shown. Colu ...
Posted by Aérolithe on Sat, 14 Sep 2019 07:13:10 +0200
ajax interaction case
Data interaction is an important part of front-end, static pages are the foundation, and interaction is the essence of web pages. Interaction is also divided into human-computer interaction and front-end and back-end data interaction. At this stage, most websites need front-end and back-end data interaction. How to interact? The process of inte ...
Posted by markduce on Fri, 13 Sep 2019 15:48:46 +0200
04_spring MVC annotation development
I. Annotation Development
Requirements: 1. Enter the commodity query list page.
2. Click on the modification and enter the commodity modification page. The page shows the commodities to be modified (query from the database), the commodities to ...
Posted by aissa on Thu, 12 Sep 2019 15:32:39 +0200
React high-order components and application scenarios
Links to the original text: https://juejin.im/post/5d7893d56fb9a06af92bcdbe
What are higher-order components?
Before explaining what higher-order components are, you can first understand what higher-order functions are, because their co ...
Posted by JADASDesigner on Thu, 12 Sep 2019 03:49:51 +0200
Python Introductory Built-in Module - Serialization Module (json Module, pickle Module)
Python Introductory Built-in Module - Serialization Module (json Module, pickle Module)
1. Serialization
There are three kinds of serialization modules in Python:
json module:
A data transformation format followed by different languages is a special string used by different languages. (For example, a list of Python [1, 2, 3] converts json into ...
Posted by brooky on Wed, 11 Sep 2019 09:41:42 +0200
Encrypt files with Python, unbreakable!
In life, sometimes we need to encrypt some important files. Python provides easy-to-use encryption libraries such as hashlib and base64. * *
But for everyday learning, we can use XOR operation to implement a simple file encryption program, thus stren ...
Posted by whizzkid-000 on Tue, 10 Sep 2019 11:15:12 +0200
Use of xpath selector
Use of xpath selector
1. What is an xpath selector?
XPath (XML Path Language) is a language for searching information in XML documents. It can be used to traverse elements and attributes in XML documents. It is more convenient, simple and acceptable ...
Posted by ki on Mon, 09 Sep 2019 13:43:30 +0200
Conversion of any table to JSON string (including paging) based on MySQL
1. Problem Description
input
Table Name of an Arbitrary Data Table
What page is it?
Number of entries per page
output
JSON array string for this table (each row of data corresponds to a JSON object)
application
When the client (Web or mobil ...
Posted by mydownfall on Sat, 07 Sep 2019 12:22:46 +0200
Build RESTful Style Application in Spring Boot
RESTful architecture is one of the most popular Internet software architectures.It is clear, standard-compliant, easy to understand and easy to expand, so it is being used by more and more websites.
1. What is a RESTful architecture
1.1 REST Term Interpretation
REST -- REpresentational State TransferFirst, the obscurity is due to the removal of ...
Posted by kontesto on Sat, 07 Sep 2019 04:28:53 +0200
ASP.NET Core on K8S Deep Learning Secret & Configmap
Secret
1.1 About Secret
Some sensitive information such as database username and password is needed in the application startup process. If it is not safe to store directly in the container image, K8S provides the scheme of Secret.
Secret stores data in ciphertext, avoiding storing sensitive information directly in configuration files.
Secret ...
Posted by sneskid on Fri, 06 Sep 2019 10:37:16 +0200