不久前,我编写了一个函数,该函数使用照相手机拍照,将其保存到设备的存储中,并在页面上显示已拍摄的照片。该函数几乎完全基于这个很棒的示例,并且运行完美。为了在页面上显示图像,我在 ng-container 内使用此函数:<ng-container *ngFor = "let img of images; index as pos" text-wrap>现在,我正在编写应用程序的新版本,其某些功能与旧
2019-09-27
我遇到了一些问题,不得不格式化我的 MAC。我将我的 Ionic Cordova Firebase 项目上传到 Github 并克隆了目录,但在运行 NPM install 以将其恢复为正常运行的项目时出现错误。当我运行 SUDO NPM INSTALL 时,我收到以下错误:gyp ERR! configure errorgyp ERR! stack Error: EACCES: permissi
2019-07-10
我正在使用 vue 和 ionic 制作一个应用程序,但是在尝试加载资产时,路径无法解析。<template><div id="index"><img :src="image.src" v-for="image in images"></div></template><script>export default {name: 'Inicio',data() {return {images: [{s
2019-04-26
我想要用来自服务器的数据填充页面,并且能够更改信息,为此,我使用 formbuilder 将来自服务器的数据作为默认值使用: createForm(){this.getGeral()this.getTiposTarefas()this.formulario = this.fb.group({'tipo_tarefa':[this.tarefa.tipoTarefa.id, Validators.c
2019-03-19