我有一个在ios中运行的项目。 在我的项目中,我希望获得绝对的应用程序URL。 我怎么能这样做?
<WebView
style={{flex:1}}
source={{ uri:'../src/html/privacy-policy.html'}} />
答案 0 :(得分:0)
如果你想在本地加载本地html文件,你应该require
<WebView
style={{flex:1}}
source={require('../src/html/privacy-policy.html')} />
示例html
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>