我正在使用react-native-html-to-pdf
包将html内容转换为pdf,这在android上工作正常,但ios总是返回空白的白色屏幕。
const options = {
html: htmlContent,
fileName:
voucher.clientID.toString() + ' - ' + voucher.archiveNo.toString(),
directory: 'Documents',
};
const pdfFile: any = await RNHTMLtoPDF.convert(options);
字符串
有人有解决这个问题的办法吗?
1条答案
按热度按时间gev0vcfq1#
检查您的iOS应用程序是否具有写入提供的目录(“Documents”)所需的权限。要在iOS上执行文件操作,您可能需要使用RNFS(React Native File System)包。请确保您的程序具有写入Documents目录的权限。
字符串