[Vuejs]-String to json Unexpected token 's',

2👍

Since you know how to use the JSON.stringify why not use it for the whole thing instead of concatenating strings ?

parametrosCorreo: JSON.stringify({
  para: destinatariosListaFmt.para.replace(/ /g, ""),
  cc: destinatariosListaFmt.cc.replace(/ /g, ""),
  cco: destinatariosListaFmt.cco.replace(/ /g, ""),
  aplicacion: "SIFCO",
  replyTo: {
    email: "liquidaciones.gas@cnmc.es",
    name: "Grupo Gas (Liquid)"
  },
  anexarComoFichero: this.anexarComoFichero,
  incrustarEnCuerpo: this.incrustarEnCuerpo,
  texto: encodeURIComponent(this.mensaje),
  adjunto: this.ficheroError,
  usuario: this.usuario
})

Leave a comment