Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我Web View在我的应用程序中使用。我想将一个值传递给 HTML。例如,我正在做一个在线支付系统;我想将一个保存金额的变量传递给将在我的 Web 视图中显示的 HTML。
Web View
有什么想法吗?
您可以在 JavaScript 中维护变量,并在页面加载后将其传递给您的 WebView。按如下方式使用它:
webview.loadUrl("javascript:var a=(%s);",data);