如何在Angular中将文件上传到Firestore

时间:2019-05-08 03:55:20

标签: angular google-cloud-firestore

我正在处理一个有角度的项目,也想为firestorage上传文件。 create是我项目的组成部分。

create.component.html

<input type="file" (change)="featuredPhotoSelected($event)" />

create.component.ts

import { Component, OnInit } from '@angular/core';

@Component({
    selector: 'ngx-create',
    templateUrl: './create.component.html',
    styleUrls: ['./create.component.scss']
})
export class CreateComponent implements OnInit {
    constructor() {}
    ngOnInit() {}
}

该怎么办?

0 个答案:

没有答案