Basic knowledge points of ionic 2 self-study

Ionic (ionic framework) is close to native HTML5 Mobile App Development Framework. IONIC is currently the most potential HTML5 mobile application development framework. Building applications through SASS provides many UI components to help developers develop powerful applications. Its use JavaScript MVVM framework and AngularJS To enhance th ...

Posted by digitalecartoon on Mon, 15 Apr 2019 11:00:33 -0700

250 lines to implement a simple MVVM

MVVM has aroused a boom in the front-end stage in the past two years. The hot Vue and Angular have brought numerous conveniences to developers. In this paper, we will implement a simple MVVM and explore the secret of MVVM with more than 200 lines of code. You can First click on JS Bin in this article to see the effect What is MVVM? MVVM is a ki ...

Posted by feckless on Sat, 13 Apr 2019 11:03:32 -0700

Summary of customization of angular 2 + JSSDK

Open any web page in the Wechat browser. If the sharing interface is not configured, Wechat will default to use the following information as sharing information: Default title: HTML title Default connection: the address of the current page, location.href Default image: The front eligible image in the current page body will be taken (size must ...

Posted by dezkit on Fri, 12 Apr 2019 23:06:32 -0700

Angular JS Practical Project Application-Unit Test Framework Design

From: http://www.cnblogs.com/vipyoumay/p/5331787.html In this paper, we introduce the unit and E2E testing of the application developed by angular through the framework of karma and jsmine. Practice of angular unit testing and integration testing Precondition Create project Create a blank web project in webstorm Create html, js ...

Posted by 87dave87 on Fri, 12 Apr 2019 09:21:31 -0700

Using iframe to create a page "browser" in Ionic2

Catalog Catalog Preface ionic-native Use of Themeable Browser Disadvantages of Themeable Browser Loading pages using iframe imitation browser browserhtml browserscss browserts define browser functions browser-popoverts menu item Define ShareModel Model Model Use examples of BrowserPage Use effect of BrowserPage Preface We wi ...

Posted by HokieTracks on Fri, 12 Apr 2019 03:30:31 -0700

Angular 2.x is the simplest Angular 2 tutorial in history from 0 to 1 (4)

Section one: Angular 2.0 from 0 to 1 (1)The second section: Angular 2.0 from 0 to 1 (2)The third section: Angular 2.0 from 0 to 1 (3) Author: Wang Qian wpcfan@gmail.com Section 4: Evolution! Modularize your application Splitting a Complex Component At the end of the last section, I lazily dumped a lot of code. Maybe you look a little dizzy. Thi ...

Posted by Maugrim_The_Reaper on Mon, 08 Apr 2019 18:12:32 -0700

route correlation method

route_routeProvider service - Dependent on ngRoute module Route can render different views and call different controllers when the path changes. It monitors location.url(), and then matches the corresponding route according to the path. route is usually used with routeProvider services and ngView instructions Method: reload() When the ro ...

Posted by noimad1 on Sun, 07 Apr 2019 13:15:31 -0700

kotlin Basic 20 Data Stream Processing

kotlin.jpeg data class Tut( var title:String, var courses:Int, var author:String, var category:String ) Define the data class Tut to describe the course object, including some features of the course. var tuts = listOf<Tut>( Tut("angular base",10,"zidea","web"), Tut("vue base",10,"rob ...

Posted by firedrop84 on Fri, 05 Apr 2019 10:39:30 -0700

Angular JS Toaster Use Details

Angular JS Toaster is an Angular JS prompt box. Based on angular v1.2.6 and above and angular-animate. (Recommended use / 1.2.8/angular-animate.js, because the high version will have weird flicker.) Import scripts <link href="https://cdnjs.cloudflare.com/ajax/libs/angularjs-toaster/0.4.16/toaster.min.css" rel="stylesheet" /> <script ...

Posted by shlumph on Thu, 04 Apr 2019 17:48:30 -0700

opencv Learning _13 (trajkovic Corner Detection)

Source: http://blog.csdn.net/songzitea/article/details/13614977 Background introduction The main content of this section comes from the introduction of Trajkovic operator by Miroslav Trajkovic and Mark Hedley[1] in 1998. FastCorner Detection . Trajkovic Operator (4-Neighbours) [3] (Note: The pictures in this section are mainly fro ...

Posted by virtual_odin on Wed, 03 Apr 2019 19:06:32 -0700