uni-app custom navigation bar button |uniapp imitation WeChat top navigation bar

uniApp Native Navigation Bar uni-app native navigation bar can also implement some top custom buttons + search boxes, just do some configuration in page.json. Setting up app-plus, dcloud platform makes a detailed description of app-plus: app-plus configuration However, for the time being, H5 and App are supported, and small programs are not su ...

Posted by mattison on Wed, 09 Oct 2019 15:10:58 -0700

Automated deployment of front-end projects based on node.js (gospel of lazy people)

Why did you write this? There is only one truth => laziness!!! If you want to use it directly, github portal You don't have to look at the back - - remember to leave a star, the heart of your pen. At present, iot project is mainly done. Due to historical reasons, there are many pure H5 sub-projects of react/vue on the platform. These project ...

Posted by mcmuney on Wed, 09 Oct 2019 14:03:45 -0700

Use examples of spring cloud feign

Recently, we used http interface calls in our project. We need to use spring cloud feign to record them. First, to install consul registry locally, you need to register related services to consul. See my other article for details. Relevant dependencies: <!-- SpringCloud-Consul --> &lt ...

Posted by geus on Wed, 09 Oct 2019 06:50:26 -0700

Efficient Generation of JSON Strings-json-gen

Summary Many operations on the game server (both player and non-player) need to be transmitted to the company's mid-stage to collect summaries and analyze data according to operational needs. On the other side of the platform, we need to transfer the past data in JSON format. At first, we used encoding/json in the golang standard library and fo ...

Posted by Submerged on Wed, 09 Oct 2019 02:40:50 -0700

Subscribe to Aliyun Internet of Things Platform Device Message PHP Example Reference Using Message Service (MNS)

Summary Internet of Things Platform Server Subscription supports sending device messages to Message Services (MNS). Cloud applications obtain device messages by listening to MNS queues. This article mainly demonstrates the use of the latest version of MNS PHP SDK to consume messages subscribed to MNS Queue. Operation steps 1. Server-side subscr ...

Posted by phence on Wed, 09 Oct 2019 00:17:40 -0700

Spring Boot: Microservice Application Monitoring Spring Boot Actuator Details

1. Introduction In the current micro-service architecture, we will have many services deployed on different machines and interact with each other through service invocation. A complete business process will be processed and transmitted by many micro-services. So, how to know the health status of each service is particularly important. Fortunat ...

Posted by New Coder on Tue, 08 Oct 2019 19:47:32 -0700

Perfect implementation of saving and loading easyui datagrid custom adjustment column width location hiding property function

Requirements & Scenarios Example table query is the most used and basic function in business system, but it is also the most common adjustment. Different users have different requirements for data. So after the system is formally used, as a development, they would like to sit on the business side and adjust according to their requirements. ...

Posted by Paul1893 on Tue, 08 Oct 2019 19:26:34 -0700

Talk about Nacos Naming Service's Select Instances

order This paper mainly studies the selectInstances of Nacos Naming Service. NacosNamingService nacos-1.1.3/client/src/main/java/com/alibaba/nacos/client/naming/NacosNamingService.java public class NacosNamingService implements NamingService { private static final String DEFAULT_PORT = "8080"; private static final long DEFAULT_HEART_BEA ...

Posted by mr_hacker on Tue, 08 Oct 2019 13:45:26 -0700

Implementing QQ login in java

Links to the original text: https://blog.csdn.net/qq_37618797/article/details/90344835 -------- Forwarding Statement: This article is reprinted to the CSDN blogger "Drunk Three Lives". It is reprinted to the CSDN blogger. Links to ...

Posted by DeadDude on Tue, 08 Oct 2019 10:10:15 -0700

How to create custom objects:

1. Factory mode Advantages: The ability to create objects in batches. Disadvantage: The method above is added for each object. function createCat(name, age, color) { var cat = new Object(); cat.name = name; cat.age = age; cat.color = color; c ...

Posted by MarkB423 on Tue, 08 Oct 2019 09:59:09 -0700