I'm using google the plugin Picker for Google Drive.
My idea is select only the folders and get its ID.
Currently not let me select them,now only enter into that directory.
I am using this code:
function MenuCtrl($scope, $location, appId) {
var onFilePicked = function (data) {
$scope.$apply(function () {
if (data.action == 'picked') {
var id = data.docs[0].id;
$location.path('/edit/' + id);
}
});
};
$scope.open = function () {
var view = new google.picker.View(google.picker.ViewId.FOLDERS);
view.setMimeTypes('application/vnd.google-apps.folder');
var picker = new google.picker.PickerBuilder()
.setAppId(appId)
.addView(view)
.setCallback(angular.bind(this, onFilePicked))
.build();
picker.setVisible(true);
};
$scope.create = function () {
this.editor.create();
};
$scope.save = function () {
this.editor.save(true);
}
}
How could I get selected folder without going inside it?
Thank you very much in advance and greetings.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…