菜鸟教程小白 发表于 2022-12-13 00:48:34

ios - PDF 未附加 phonegap 电子邮件编辑器


                                            <p><p>我正在使用以下插件从 iphone phongeap 应用程序(使用 ionic)发送电子邮件:<a href="https://github.com/katzer/cordova-plugin-email-composer" rel="noreferrer noopener nofollow">https://github.com/katzer/cordova-plugin-email-composer</a> </p>

<p>一切正常,除非我尝试附加保存到设备的 pdf 文件:当电子邮件界面打开时,我可以看到附加的 pdf(称为 test.pdf),但是当电子邮件到达收件人时,有没有PDF。相反,有一个附加的 txt 文件,但没有任何内容。 </p>

<p>如果我去 window.replace(pdf 的路径),PDF 会打开,所以我确定 PDF 被保存并且路径是正确的。阅读本文后,<a href="https://github.com/katzer/cordova-plugin-email-composer/issues/33" rel="noreferrer noopener nofollow">https://github.com/katzer/cordova-plugin-email-composer/issues/33</a> ,我也尝试删除路径开始(file://)并将其替换为(relative://)但没有用。非常感谢您对此的任何意见:以下是相关代码:</p>

<pre><code>    var doc = new jsPDF();

    doc.text(20, 20, &#39;HELLO!&#39;);

    doc.setFont(&#34;courier&#34;);
    doc.setFontType(&#34;normal&#34;);
    doc.text(20, 30, &#39;This is a PDF document generated using JSPDF.&#39;);
    doc.text(20, 50, &#39;YES, Inside of PhoneGap!&#39;);

    var pdfOutput = doc.output();
    console.log( pdfOutput );


window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {



fileSystem.root.getFile(&#34;test.pdf&#34;, {create: true}, function(entry) {
var fileEntry = entry;
console.log(entry);

$scope.filepath =fileEntry.toURL();

$scope.filepath = $scope.filepath.replace(&#39;file\:\/\/&#39;, &#39;relative://&#39;);




    $scope.emailer($scope.filepath);   


   //window.location.href = $scope.filepath;




entry.createWriter(function(writer) {
   writer.onwrite = function(evt) {
   console.log(&#34;write success&#34;);
};

console.log(&#34;writing to file&#34;);
   writer.write( pdfOutput );
}, function(error) {
   console.log(error);
});

}, function(error){
   console.log(error);
});





},
function(event){
console.log( evt.target.error.code );
});



    $scope.emailer = function(file) {


    alert(file);



    window.plugin.email.open({
            to:      [&#39;[email protected]&#39;],
            subject: &#39;Congratulations&#39;,
            body:    &#39;&lt;h1&gt;Happy Birthday!!!&lt;/h1&gt;&#39;,
            attachments:    
      });
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我们使用的是完全相同的插件并且可以正常工作,我们使用的 URL 看起来像这样</p>

<p>/var/mobile/Applications/998AEF02-5D26-4064-BC7D-A94A218609C5/Documents/yourpdffilenamehere.pdf</p>

<p>URL 从我们使用的 pdf 插件返回到我们的应用程序。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - PDF 未附加 phonegap 电子邮件编辑器,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25380401/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25380401/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - PDF 未附加 phonegap 电子邮件编辑器