【发布时间】:2018-01-23 19:09:05
【问题描述】:
这是我的问题。我想使用 caman 修改图像,然后将其上传到 firebase。这是我的代码
import { Component, NgZone } from '@angular/core';
import { NavController, NavParams, AlertController } from 'ionic-angular';
import firebase from 'firebase';
declare var Caman: any;
@Component({
selector: 'page-filtri',
templateUrl: 'filtri.html'
})
export class FiltriPage {
fotoModificata: any;
public fotoScelta;
itemRef : firebase.database.Reference = firebase.database().ref('/matrimonio1');
firestore = firebase.storage();
alertCtrl: AlertController;
imgsource: any;
constructor(public navCtrl: NavController, public navParams: NavParams, alertCtrl: AlertController, public zone: NgZone,
) {
this.alertCtrl = alertCtrl;
this.fotoScelta = navParams.get("foto");
}
addFilter(){
Caman("#image", function(){
this.brightness(5);
this.render(function () {
var fotoModificata = this.toBase64();
});
});
}
upload() {
let storageRef = firebase.storage().ref();
const filename = Math.floor(Date.now() / 1000);
const imageRef = storageRef.child(`images/${filename}.jpg`);
imageRef.putString(this.fotoModificata, firebase.storage.StringFormat.DATA_URL).then((snapshot)=> {
// il codice sotto prende l'url della foto appena caricata
this.firestore.ref().child(`images/${filename}.jpg`).getDownloadURL().then((url) => {
this.zone.run(() => {
this.imgsource = url;
// carica l'url in firebase.database
let newPostRef = this.itemRef.push();
newPostRef.set({
"nome" : " ",
"url" : url
});
})
});
this.showSuccesfulUploadAlert();
}, (err) => { });
}
showSuccesfulUploadAlert() {
let alert = this.alertCtrl.create({
title: 'Caricata!',
subTitle: 'La foto è stata caricata!',
buttons: ['OK']
});
alert.present();
this.fotoModificata = "";
}
}
我确信 upload() 函数有效。我可以从 addFilter 函数中导出 var fotoModificata 以在 upload() 中使用吗?如果我在 var 声明后立即使用 console.log,我可以在控制台中看到我的图像的 base64 字符串,但如果我在其他地方登录控制台,我已经和未定义。我该如何解决?
【问题讨论】:
-
我猜你只需要添加来改变这一行:var fotoModificata = this.toBase64();成为 this.fotoModificata = this.toBase64();但要做到这一点,您需要确保“this”指向您的整个组件。为此我会使用箭头函数:Caman("#image", () => { ... }
-
如果有帮助,请尝试告诉我:) 我也在学习,但我认为这对你有用。
-
如果我使用它,我在编译时会出错,说亮度和渲染不是 filtripage 的属性
-
我试过这个:'addFilter(){ Caman("#image", function () { this.brightness(5); this.render( () => { this.fotoModificata = this. toBase64(); }); }); }' 但是当我调用 upload() 我有 ERROR 错误:[object Object]
-
等一下:) 我想我知道出了什么问题——忽略我之前的评论。我将在 3 分钟内发布工作代码
标签: typescript firebase ionic-framework ionic3 camanjs