我想知道如何在反应原生<WebView>
内使用图像。在文档中有一些有希望的引导,例如source
道具。
我希望能够做的一个例子:
var MyComponent = React.createClass({
render() {
var html = '<html>
<body>
<h1>Hi</h1>
</body>
<script>
var image = injectedImage
</script>
</html>'
return (
<WebView
html={html}
source={{uri: './images/button.png'}}
</WebView>
)
}
})
答案 0 :(得分:0)
我遇到了同样的问题,还将把图像托管在服务器上,并使用url作为解决方法来引用它。