Development of Java Wechat Public Platform--Information Acquisition of Micro Credit Users

In the previous article, we talked about a series of development articles about Wechat, including token acquisition, menu creation and so on. In this article, we will talk about how to get the information of Wechat users in the development of Wechat public platform. In the previous article, we said that the connection between Wechat users and W ...

Posted by szym9341 on Wed, 29 May 2019 05:16:53 -0700

Use Kind Editor Rich Text Editor in django admin or applications

Because there is no rich text editor in django background management, the pages displayed are ugly, and the WYG editing method cannot be achieved, we need to introduce a third-party rich text editor. Previously, many documents have been found before the blog to make this function. Although some blogs write well, after all, they are not written ...

Posted by BETA on Wed, 22 May 2019 12:56:55 -0700

A variety of words Trojan horse Daquan

Today, with the development of the Internet, various levels of program use emerge at the right time, not paying attention to security, resulting in a lot of websites are hanging horses (virtual host is now a disaster area). Such a saying that the back door is the hacker's favorite, good concealment, here to share the code to you, you can find ...

Posted by meburke on Tue, 21 May 2019 13:28:09 -0700

Spring MVC Tutorial 5 [Restful and Interceptors]

Restful Style Restful is a software design specification and a specification for data interaction between client and server.In the early development of web pages using jsp pages, data interaction was basically through form submission, then transmission through built-in objects. When HTML5 was rising, mobile Internet was rising ...

Posted by omarh2005 on Sun, 19 May 2019 06:03:37 -0700

Jsonp Solves the Cross-domain Problem of ajax

http://blog.csdn.net/saytime/article/details/51540876 1. Homology strategy Browsers have an important concept - Same-Origin Policy. The so-called homology refers to the same domain name, protocol and port. Different source client scripts (javascript, ActionScript) can not read and write each other's resources without explicit authorizati ...

Posted by jhenary on Sat, 18 May 2019 08:09:38 -0700

ExtJs Learning (6)~~Initial Practice

1. Developing a Functional ~~Effect Map of "Player Information" [train of thought analysis:] A grid component is needed to display the data, a grid component needs a column array to display the returned results, a grid needs a store, and a store needs a model. At the same time, grid also needs a toolbar and queryF ...

Posted by Tjk on Fri, 17 May 2019 23:17:30 -0700

SSM: 8. CRUD Increases Employee Functions

SSM: 8. CRUD Increases Employee Functions Write the modal box to add employee information in jsp file Use ajax to transfer departmental information into the modal box. Add the Service and Controller methods for adding employees to the back end. Use ajax to insert data into the database, close the modal box and turn the page ...

Posted by wmac on Thu, 16 May 2019 20:11:58 -0700

Customized Request Mapping Handler Mapping for Spring Mvc

Above Request Mapping Handler Mapping Matching in Spring MVC We mentioned that Spring not only matches url, method, contentType and other conditions, but also matches the customized conditions provided by users. The customized conditions provided by users are encapsulated using RequestCondition s. In this paper, I work on a practical case to ex ...

Posted by galewis on Thu, 16 May 2019 03:18:47 -0700

Summary of this week (file upload, download, mail)

File upload 1. Upload Form Restrictions method="post" enctype="multipart/form-data" File form entries need to be added to the form: <input type="file" name="xxx"/> <h3>${msg }</h3> <form action="xxx" method="post" enctype="multipart/form-data"> //User name; <input type="text" nam ...

Posted by ironman on Wed, 15 May 2019 14:38:58 -0700

Struts 2 Note_Interceptor

A. What is the interceptor? Interceptor: Interceptor, which acts as an interceptor for Action. Filter: A filter that filters requests sent from the client to the server. Interceptor: Interceptor. Interceptor is the client's access to Action. Finer-grained interception. (Intercepting specific methods in Action). The core functions of Struts 2 ...

Posted by dcooper on Wed, 15 May 2019 05:54:19 -0700