2
我有一個WebView,它使用本地文件require
來顯示網頁內容。如何在ReactNative Android的發佈包中包含靜態html?
<WebView
source={ require('./inline_web_view/inline_web_view.html') }
injectedJavaScript={ scripts }
scrollEnabled={ this.props.scrollEnabled || false }
scalesPageToFit={ false }
style={{
width: this.state.width,
height: this.state.height,
}}
onNavigationStateChange={ (navState)=> this.onNavigationStateChange(navState) }
/>
這工作完全在開發模式iOS和Android,但它好像不被包含在Android版本捆綁的HTML文件。
我該如何將它添加到包中?