Binden Sie einen Blob mit PDFObject @ ei

Ich benutze:https: //pdfobject.com

Um ein eingebettetes @ anzuzeigpdf -Datei in meiner Web-App. Ich kann jedoch kein @ rendepdf erstellt von einemblob.

Das ist, was ich versucht habe:

var arrayBufferView = new Uint8Array(response.Body.data);
var file = new Blob([arrayBufferView], {
    type: response.ContentType
});
var url = window.URL.createObjectURL(file)
PDFObject.embed(url, "#my-container");

Gets mir dieses Ergebnis auf HTML:

<div id="my-container" class="ng-scope pdfobject-container">

    <embed class="pdfobject" src="blob:http%3A//localhost%3A4000/869a8d9a-7eaa-48dd-99aa-49bf299114aa" type="application/pdf" style="overflow: auto; width: 100%; height: 100%;" internalinstanceid="88">

</div>

Der eingebettete Container zeigt jedoch nichts in meinem Browser an. Ich verwende Chrome 51.0.2704.103 m

Antworten auf die Frage(4)

Ihre Antwort auf die Frage