本文整理汇总了TypeScript中ionic-native.SpinnerDialog.show方法的典型用法代码示例。如果您正苦于以下问题:TypeScript SpinnerDialog.show方法的具体用法?TypeScript SpinnerDialog.show怎么用?TypeScript SpinnerDialog.show使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ionic-native.SpinnerDialog
的用法示例。
在下文中一共展示了SpinnerDialog.show方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: validate
validate() {
SpinnerDialog.show();
let self = this;
cordova.plugins.camerapreview.takePicture({maxWidth:640, maxHeight:640});
cordova.plugins.camerapreview.setOnPictureTakenHandler(function(result){
console.log(result[0]);
window.resolveLocalFileSystemURL('file://' + result[1], gotFile, fail);
function fail(e) {
alert('Cannot found requested file');
}
function gotFile(fileEntry) {
fileEntry.file((file) => {
var reader = new FileReader();
reader.onloadend = function(e) {
var content = this.result.split(',')[1];
console.log(content)
self.accountService.validateImage(content);
};
// The most important point, use the readAsDatURL Method from the file plugin
reader.readAsDataURL(file);
});
}
});
}
示例2: showDialog
showDialog(){
SpinnerDialog.show('SpinnerDialog',"Native Spinner dialog");
//SpinnerDialog.hide();
}
示例3: constructor
constructor(peopleService: PeopleService, generic: Generic) {
SpinnerDialog.show();
this.peopleService = peopleService;
this.generic = generic;
this.loadPeople();
}
示例4: spin
spin(){
SpinnerDialog.show('Some Spinner','Spinning is what I do');
}