使用 react-native-pdf
在应用程序中显示 pdf 时,我在
React Native中遇到问题
控制台显示日志:
错误:ReactNativeBlobUtil 请求错误: java.lang.IllegalStateException:使用自己的信任管理器,但没有 Definedjava.lang.IllegalStateException:使用自己的信任管理器,但是 未定义]
打开您的代码并只需使用 trustAllCerts 属性并将其 值设置为 false
如下图:
<Pdf
trustAllCerts={false}
source={{
uri: pdfUrl,
cache: true,
}}
onLoadComplete={(numberOfPages, filePath) => {
console.log(`Number of pages: ${numberOfPages}`);
}}
onPageChanged={(page, numberOfPages) => {
console.log(`Current page: ${page}`);
}}
onError={error => {
console.log(error);
}}
onPressLink={uri => {
console.log(`Link pressed: ${uri}`);
}}
style={styles.pdf}
/>