我正在使用相机插件在ionic应用程序中点击图片,但我得到了以下错误
OrdercancelPage.html:24 ERROR TypeError: Object(...) is not a function
at Camera.getPicture (index.js:125)
at OrdercancelPage.webpackJsonp.444.OrdercancelPage.getphoto (ordercancel.ts:24)
at Object.eval [as handleEvent] (OrdercancelPage.html:24)
at handleEvent (core.js:13547)
at callWithDebugContext (core.js:15056)
at Object.debugHandleEvent [as handleEvent] (core.js:14643)
at dispatchEvent (core.js:9962)
at core.js:10587
at HTMLButtonElement.<anonymous> (platform-browser.js:2628)
at t.invokeTask (polyfills.js:3)我的代码是
getphoto(){
this.camera.getPicture({
quality: 100,
destinationType: this.camera.DestinationType.FILE_URI,
encodingType: this.camera.EncodingType.JPEG,
mediaType: this.camera.MediaType.PICTURE,
sourceType: this.camera.PictureSourceType.CAMERA,
targetWidth: 1024,
targetHeight: 720
}).then((imageData) => {
// imageData is a base64 encoded string
this.base64Image = "data:image/jpeg;base64," + imageData;
}, (err) => {
console.log(err);
});}
我正在使用插件
import { Camera } from '@ionic-native/camera/ngx';发布于 2019-04-02 14:33:04
只需移除你的插件并安装-
npm install @ionic-native/camera@4.20.0 这会解决你的问题
发布于 2019-01-28 15:03:30
问题是,我使用的是5.0.0版本的插件。我使用package.json降级到4.x.x版本,它在不使用ngx导入的情况下工作得很好。
https://stackoverflow.com/questions/54381062
复制相似问题