我正在使用用于 nativescript 的插件图像选择器,我复制了示例代码以查看它是如何工作的并使其适应我的代码。但是代码不起作用。当我点击按钮时,应该打开我设备上的屏幕库,但是当我点击按钮时没有任何反应。
下面的代码是我如何实现的。
专辑列表.component.ts
import { Component } from '@angular/core';
import { RouterExtensions } from 'nativescript-angular/router';
//image picker
var imagepicker = require("nativescript-imagepicker");
@Component({
selector:'album_list',
moduleId: module.id,
templateUrl: "album_list.component.html",
})
export class AlbumListComponent{
constructor(private routerExt: RouterExtensions ){}
ngOnInit() {
}
onSelectMultipleTap() {
console.log('Im in');
function selectImages() {
var context = imagepicker.create({
mode: "multiple"
});
context
.authorize()
.then(function() {
return context.present();
})
.then(function(selection) {
console.log("Selection done:");
selection.forEach(function(selected) {
console.log(" - " + selected.uri);
});
}).catch(function (e) {
console.log(e);
});
}
}
}
专辑列表.component.html
<StackLayout>
<Button text="Pick Multiple Images" (tap)="onSelectMultipleTap()" > </Button>
</StackLayout>
正如我所说,当我点击 html 中的按钮时,会出现 onSelectMultipleTap 函数的日志,但没有别的。
谢谢!!