从我在WebView中渲染的API中获取base64(expo项目)
在渲染对象和iframe内的webview我得到所需的pdf,但我只能看到第一页,没有能力滚动通过网页
<WebView
javaScriptEnabled={true}
scrollEnabled={false}
source={{
html: `\
<div style="display:flex;height:100%">
<object style="margin:auto" width data="data:application/pdf;base64, ${pdf64}" type="application/pdf">
<iframe style="width:'100%;height:100%" src="https://docs.google.com/viewer?&embedded=true"></iframe>
</object>
</div>
`,
}}
/>
这是目前的代码,这是一种工作
1条答案
按热度按时间e37o9pze1#
请尝试将您的代码 Package 在
ScrollView
中,以使内容可见/可滚动。请参阅下面的示例以供参考