Easily ignored points of js Foundation

1 if ( typeof v === 'undefined') { // true } if ( typeof null === 'object') { // true } 2 Number(null) //0 5 + null //5 Number(undefined) //NaN 5 + undefined //NaN 3 integers and floating points There are no integers at all at the bottom of JavaScript language. All numbers are decimals (64 ...

Posted by inutero on Sun, 19 Jan 2020 02:45:14 -0800

WeChat public number development menu processing

I. Preface WeChat public number development (1) WeChat access certification as developer WeChat public number development (2) message processing This article will implement Get access_token according to AppID and AppSecret Custom menu (create menu, query menu, delete menu) Some tips in wechat documents: access_token must be stored with at ...

Posted by big_c147 on Fri, 17 Jan 2020 05:22:26 -0800

Gorang learning series - 20. Package

Catalog   1, Standard library 1. regexp package: regular expression 2. sync package: lock and sync 2.1 sync.Mutex mutex 2.2 sync.RWMutex read / write lock 2.3 once.Do(call) 2, Use of packages 1. Custom package 2. reference package 3. Initialization of package 1, Standard library Built i ...

Posted by unbreakable9 on Fri, 17 Jan 2020 04:15:47 -0800

Chapter 6 Feign parameter binding

Parameter binding stay The fifth chapter Feign is used to implement a REST service binding without parameters. However, in the actual business, it is much more complicated than this. Different types of parameters are passed in at various locations of HTTP requests, and the returned parameters may als ...

Posted by halex on Fri, 17 Jan 2020 00:55:22 -0800

Enterprise Ethereum Besu introductory course [original Pantheon]

Besu is the enterprise Ethereum product in Hyperledger, and its biggest advantage is that it is compatible with the Ethereum main network. This tutorial describes how to use Hyperledger Besu to quickly start an enterprise Ethernet network and use JSON RPC for data query and transaction submission, and how to use Truffle to develop enterprise Et ...

Posted by pessi on Thu, 16 Jan 2020 19:06:45 -0800

API specification conventions let you write high quality APIs!

abstract API design principles: Controlling the granularity and number of API s Naming should follow the principle of simplicity, readability and uniformity. Prioritize API design, then code Say one more thing: In order to develop more efficiently and save the cost of writing documents, these popula ...

Posted by artin on Thu, 16 Jan 2020 17:55:04 -0800

Feign call error: failed and no fallback available

timed-out and no fallback This error basically occurs in the Hystrix fuse. The function of the fuse is to determine whether the service can be connected. If it is connected, it doesn't matter. If the call exceeds the time limit within the specified time, it will return an error through the fuse. Generally, you can set one of the following confi ...

Posted by Simbachips on Thu, 16 Jan 2020 07:41:32 -0800

Springboot unit test@

In computer programming, unit testing is a software testing method, which is used to test a single unit of source code, a collection of one or more computer program modules, and related control data, use process and operation process to determine whether they are suitable for use. In short, when we are doing unit tests, we only test one code un ...

Posted by anthonydamasco on Thu, 16 Jan 2020 07:37:32 -0800

Source code analysis of Vue router

Entrance All changes are inseparable from its origin. First look at the source code to find the entry. First look at the entry of Vue router, which is defined in src/index. Vue router is based on class implementation. Class provides construction methods and some other methods. After the class is def ...

Posted by gasxtreme on Thu, 16 Jan 2020 00:52:29 -0800

MVC development mode and the use of Smarty template engine

Linux global installation composer Switch the directory to the / usr/local/bin / directory cd /usr/local/bin/ Download composer in bin directory curl -sS https://getcomposer.org/installer | php View composer through composer.phar -v Change to Chinese image composer.phar config -g repo.packagist composer https://packagist.phpcompo ...

Posted by pbs on Thu, 16 Jan 2020 00:22:31 -0800