logo头像
Snippet 博客主题

Vue使用问题

页面参数传递params通过route.params 获取参数 1console.log(this.$route.params.uuid) 一、 在Router 中定义:uuid 方式定义params 1234567891011121...

JS常用技巧

1 数组中添加数组 使用 concat(Array) 方法 非pushconcat(Array) 方法123456var arrA=[1,2,3];var arrB=[4,5,6];var a = arrA.concat(arrB)...

ionic 调试

1 页面调试1open -n /Applications/Google\ Chrome.app/ --args --disable-web-security --user-data-dir=/Users/kylinhuang/MyCh...

ionic移动端 监听事件

1 物理返回按钮 back12345678910111213141516171819202122232425 ionViewDidLoad() { this.registerBackButtonAction();&#12...

ionic移动端web的性能优化开源组件

1、四种方式优化ionic,接近原生体验 http://scottbolinger.com/4-ways-to-make-your-ionic-app-feel-native/ 2、ionic的问题事件收集http://emerson...

ionic 开发中遇到的问题

1 list列表中删除某条 var index = this.motionList.indexOf(motion); if (index > 0 ) this.motionList.splice(index, 1); // de...

ionic 下拉刷新

下拉刷新 ion-refresherdoc 控件12345 <ion-refresher (ionRefresh)="doRefresh($event)"> <ion-refresher-content pull...

Ionic常用组件

DatePipe 1234567891011121314151617181 引入控件import { DatePipe } from '@angular/common';constructor(private...