ASP.NET Core series: Create the first. Net Core project
This chapter will talk about the project structure of ASP.NET Core 2.0. See the complete series of ASP.NET Core articles: https://www.cnblogs.com/zhangweizhong/category/1477144.html
New projects
New projects, choose. NET Core has the following types of options, Console, ASP.NET Core empty project, Web API
We chose ASP.NET Core Web App(MVC ...
Posted by Elhombrebala on Thu, 18 Jul 2019 18:48:22 -0700
cascade and inverse of hibernate in java
1.Cascade is a cascade action. In many_to_one, if cascade is used to cascade related objects, the following code can cascade to save Category objects.
Mapping File Settings in Book
<many-to-one name="category" column="cid" cascade="save-update"/>
When saving a book, if the corresponding category of the book is not saved, save the c ...
Posted by zeberdeee on Thu, 18 Jul 2019 09:43:44 -0700
Hand-in-hand teaching you to complete the dynamic digital display effect
1. Goals
In the form of LCD spreadsheet, the number is displayed dynamically in the specified element.
Target keywords: dynamic change (timer), specified element (DOM element ID), numberEffect: Among many page elements, different numbers are displayed in dynamic effect, which can be positive or negative. And dynamically change the data in at ...
Posted by halm1985 on Wed, 17 Jul 2019 17:59:13 -0700
Bi-connected component (point-bi-connected component-edge-bi-connected component)
biconnected component (bcc)
Concept:
There are two kinds of bi-connected components, one is bi-connected component and the other is edge bi-connected component. If the removal of any node (an edge) in an undirected graph does not change the connectivity of the graph, that is, there is no cut point (bridge), it is called a point (edge) connect ...
Posted by kutatishh on Wed, 17 Jul 2019 14:50:36 -0700
Some pits encountered when front-end AJAX requests cross-domain
From: https://icewing.cc/post/about-cross-origin.html
Access-Control-Allow-Origin Problem
Access-Control-Allow-Headers Problem
cookie problem
OPTIONS request
Complete code
In the past two days, we have to study the cross-domain problem because we need to use angular's $http service to access data and the interface is under another ...
Posted by xbase on Wed, 17 Jul 2019 13:35:14 -0700
Detailed ArrayList in List Collection in java
List is the implementation class of collection interface
List:
Features: orderly, repeatable
It has two commonly used implementation classes:
One. ArrayList:
Features: Storage in the form of arrays, so random access speed is faster, all of which are suitable for queries.
Disadvantage: Not suitable for insertion and deletion operations bec ...
Posted by Aaron_Escobar on Wed, 17 Jul 2019 11:05:11 -0700
Advanced query operations for python database-mongoDB (55)
MongoDB Index
Why use index?
Assuming there is a book, you want to see what Chapter 6, Section 6, says, and what you will do, the average person must go to the catalogue, find the corresponding pages of this section, and then turn to this page. This is the catalog index, which helps readers quickly find the chapters they want. In databases, w ...
Posted by rajb on Tue, 16 Jul 2019 11:56:21 -0700
When Swoole Meets ThinkPHP5: Hello,World!
When Swoole Meets ThinkPHP5: Hello,World!
This article assumes that you already have a PHP environment for the Linux operating system. It is highly recommended that you use Vagrant to build a development environment.
Install Swoole PECL Extension
Swoole can be installed either by pecl command or by compiling and installing source packages. Thi ...
Posted by flaab on Tue, 16 Jul 2019 10:51:08 -0700
Nuxt.js Create Tourism Website Chapter 3 Writing of Login Page
Key knowledge points:
1. Using vuex/store to manage data
2. Logic of login and registration
3.Nuxt Local Storage
1. Login page
1.1 Login Page Layout
The code to replace pages/user/login.vue is as follows
<template>
<div class="container">
<!-- primary coverage -->
<el-row
type=" ...
Posted by tempa on Mon, 15 Jul 2019 15:48:20 -0700
[Serial] Research EasyUI System - LinkButton Component
The linkbutton is a button component in the easyui framework and is the parent of other button components in various forms, such as MenuButton.linkbutton is created from <a>tag in html. Users can add icons and text to the button. It is a very common component.
The Cancel and Logon buttons in the image above are the link buttons.Take a l ...
Posted by Cenron on Mon, 15 Jul 2019 10:09:12 -0700