JS-class-inheritance and development model
Learn more about how js inherits
1 ES5 implementation (pre-2015 standards)
The reuse of js objects is accomplished by prototype chains. Function methods are stored in prototype prototype in u proto_ of subclasses. Constructors in constructor s must use the new keyword
1.1 Prototype Chain
function Parent () {
this.name = 'haha';
...
Posted by AaZmaN on Wed, 17 Jul 2019 18:51:20 +0200
Yii2 Plugin Series - kartik\detailDetailView
Preface
The DetailView plug-in, which combines the display and editing of custom fields, has been studied for some time. The DetailView plug-in itself is not so flexible and must be revamped to achieve this effect.There are both display and edit DetailView plug-ins, which can be done simply by adding custom fields.But how do you add it?Since it ...
Posted by torrentmasta on Wed, 17 Jul 2019 18:18:33 +0200
PHP+MySQL for the month, week, day data statistics, and the corresponding fields grouped and sorted
In our development process, we often encounter members or businesses to rank revenue, sorted according to the month, week or day; of course, you can first get the data used, and then according to the functions you want to process the data accordingly. Next, I want to show you how to operate MySQL directly, using some statistical functions ...
Posted by Iokina on Tue, 16 Jul 2019 22:31:27 +0200
Development of Android Wechat Payment SDK
I. Preparations
1. Development Platform and SDK Download
Wechat Open Platform
https://open.weixin.qq.com
Download SDK
Wechat Payment Demo Download
http://pay.weixin.qq.com/wiki/doc/api/app.php?chapter=11_1
2. Creating Applications
Creating Mobile Applications to Get AppID AppSecret
To obtain payment function, it also needs developer qualific ...
Posted by mattkirkey on Tue, 16 Jul 2019 20:18:32 +0200
How does Paypal achieve circular deductions (subscriptions)?
cause
Business needs to integrate Paypal to achieve circular deduction function, but Baidu and GOOGLE have a circle, except for the official website, did not find the relevant development tutorials, had to look at Paypal, spent two days after the integration success, here on how to use Paypal payment interface to make a summary.
Paypal now has ...
Posted by matt_wood87 on Tue, 16 Jul 2019 20:06:31 +0200
Smart Template Engine for Front-end Learning PHP
Previous remarks
For PHP, there are many template engines to choose from, but Smart is a PHP-based template engine, which is the most famous and powerful in the industry. Smart, like PHP, has a rich library of functions. It can be used directly from counting words to automatic indentation, text wrapping and regular expressions. If it is not en ...
Posted by MrBillybob on Tue, 16 Jul 2019 00:24:44 +0200
Tarjan Algorithms for Strongly Connected, Strongly Connected Graphs and Strongly Connected Components of Graphs
Strongly Connected Components
brief introduction
Before reading the following, be sure to understand Graph Theory Basis Part.
The definition of strong connectivity is: strong connectivity of digraph G means that any two nodes in G are connected.
Strongly Connected Components (SCC) is defined as a large strongly connected subgraph.
What I ...
Posted by vandana on Mon, 15 Jul 2019 21:28:13 +0200
Digital Signature Verification Method for Byronsh Blog
English Title: signature verification process for digital signature of Byronsh's blog
Some of the bloggers have digital signatures.
The signature algorithm is SHA512+RSA4096, and only the text part is signed.
The public key of RSA4096 is as follows:
-----BEGIN PUBLIC KEY-----
MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAnrJo0wOPcH+ZeAb+UsGh
yHhP ...
Posted by Mad_Mike on Sat, 13 Jul 2019 22:57:23 +0200
ajax for modification
During this time I was working on a project and found myself forgetting it so fast. Thanks to the blog park that helped me remember it, it's not so important to organize the blog park.
Because what we're doing is an internal management system, using only one home page, and not allowing the entire page to refresh, we can only use ajax
To do it ...
Posted by nade93 on Sat, 13 Jul 2019 19:17:50 +0200
asp.net avoids ajax timing calls and uses ashx to implement long polling (long polling)
Links to the original text: http://www.cnblogs.com/syblogs/archive/2013/05/18/3085575.html
Motivation: My friend told me that he implemented a message reminder mechanism in his company. I asked him how he did it. He said that he impleme ...
Posted by The voice on Fri, 12 Jul 2019 23:35:00 +0200