Android learning notes of Bi's weekly notes 1

February 5th 1. target Master the layout manager of Android UI design 2. Learning notes 2.1 UI components TextView Botton RadioBotton EditView ImageView RecyclerView 2.2 layout manager 2.2.1 linear layout Most common attributes attribute attribute attribute android:id android:layo ...

Posted by MrLister on Tue, 11 Feb 2020 13:40:18 +0100

[Vue] 6 - Options - filters, computed, watch, template, dynamic binding style (: class /: style)

Article directory 1.filters 2. Calculated calculation attribute 3. watch 4.template 5. Dynamic binding style : class = "object / array" : style = "object / array" 1.filters If there are two vue instances, one instance cannot get the method in the other instance. As follows ...

Posted by roxki on Tue, 11 Feb 2020 12:16:57 +0100

nodejs crawler -- grabs all articles of a user in CSDN

Recently, I'm learning node.js. It's like playing with something, so this simple reptile is born. Preparation node.js crawler must be installed first node.js Environmental Science Create a folder Open the command line in the folder and execute the npm init initialization project Begin formally Installation dependency express is used to buil ...

Posted by may on Tue, 11 Feb 2020 10:23:02 +0100

Java tree structure foundation

Tree structure foundation I. overview Why tree data structure is needed: Tree storage can improve the efficiency of data storage and reading. For example, by using * * binary sort tree, * * can not only ensure the speed of data retrieval, but also the speed of data insertion, deletion and modificat ...

Posted by Dan06 on Mon, 10 Feb 2020 15:22:19 +0100

Event of JS&jQuery interactive web front end development

Article directory 6 incident 6.1 event handling: the process of event triggering JavaScript 1) process 2) Binding events to elements 3) Event flow 4) Event object 6.2 using different event types 1) User interface (UI) events 2) Focus event 3) Mouse events 4) Keyboard events 5) Form event 6) Chang ...

Posted by Typer999 on Mon, 10 Feb 2020 10:35:23 +0100

The problem of using Baidu echo chart in vue

In the project, we need to show the success rate of the test through the dashboard of Baidu echarts. We encapsulate a gauge vue component. When we show it, we find that the size is wrong, and the whole image is limited to a very short range, as shown in the following figure: The component files are as follows: <template& ...

Posted by smileyriley21 on Sun, 09 Feb 2020 19:39:07 +0100

ElasticSearch index details

Still using mysql for full-text indexing? Try elastic search! Note: the following documents are based on elasticsearch version 7. X, which is different from the old version 1. Format description The data interaction interface of elasticSearch is based on http protocol, and the basic format is as fol ...

Posted by ErcFrtz on Sun, 09 Feb 2020 11:55:43 +0100

Views on several methods of dependency injection in spring

Views on several methods of dependency injection in spring IOC(inversion of Control): It is an inversion of the direction in which resources are acquired by the container that actively provides the resources acquired by the component, rather than being created by the container itself.All the compo ...

Posted by daok on Sat, 08 Feb 2020 09:18:21 +0100

Data array of xarray data structure

Data array of xarray data structure Create a DataArray DataArray property DataArray coordinates xarray.DataArray is a multidimensional array that uses labels. It mainly has the following key properties: Values: a numpy.ndarray to hold array values dims: Dimension name of each axis (for example, ...

Posted by greekuser on Fri, 07 Feb 2020 19:38:40 +0100

SpringBoot global configuration file application.yml

From other frameworks, we have our own configuration files. hibernate has hbm, mybatis has properties, and SpringBoot also has global configuration files. Spring boot uses a global configuration file, and the name of the configuration file is fixed. (you can start by yourself, but you need to specif ...

Posted by keyboard on Fri, 07 Feb 2020 14:53:49 +0100