Estoy cargando un archivo HTML en un contenedor de blobs, pero el archivo no se creó. ¿Alguien puede ayudar aquí?
var formData = new FormData(); var fileBlob = new Blob([mystring], { type: "text/html"}); formData.append('filename', 'test.html'); formData.append('file', fileBlob); blobServicedev.createBlockBlobFromText( 'adshaltraceurl', 'test.html', JSON.stringify(formData), option, function(error, result, response) { if (error) { console.log(error); } else { console.log('blob uploaded successfully'); } } );