|
本帖最后由 风竹 于 2017-4-28 13:37 编辑
想做一个打开并照相机及相册功能并上传,但现在不知道为什么原因总是提示我有错误:
Cannot read property 'getPicture' of undefined
// 拍照
Model.prototype.button9Click = function(event) {
this.picSource(50, 1);
};
// 从相册选择
Model.prototype.button10Click = function(event) {
this.picSource(25, 2);
};
Model.prototype.picSource = function(quality, source) {
var me = this;
this.comp("popOver2").hide();
function onSuccess(imageURI) {
me.uploadImage(imageURI);
}
function onFail(message) {
return message;
}
navigator.camera.getPicture(onSuccess, onFail, {
quality : quality ,
sourceType : source
});
};
请问是不是因为在该没有打包成app就不能直接在x5里模拟运行
|
|