1

我正在尝试转换为 pdf 并下载到我的手机。我正在尝试下面的示例。我已经完成了 npm i react-native-html-to-pdf 和下面的代码。但是在按下“下载收据”之后,它就开始起作用了,但是在那个应用程序崩溃之后。请帮我 。对此做出本机反应的最佳解决方案是什么

import RNHTMLtoPDF from 'react-native-html-to-pdf';

     async createPDF() {
        let options = {
          html: '<h1>PDF TEST</h1>',
          fileName: 'test.pdf',
          directory: 'Documents',
        };
    
        let file = await RNHTMLtoPDF.convert(options)
        console.log("file name ",file);
        //console.log(file.filePath);
        //alert(file.filePath);
      }


<TouchableOpacity onPress={() => this.createPDF()} style={{ flex: 1, marginTop: hp(2) }}>
                  <RegularText text='Download Receipt' textColor={signatureStartColor} style={{ fontSize: hp('2%'), textAlign: 'center' }} />
                </TouchableOpacity>
4

0 回答 0