我有一个问题,我们是否可以在 react-native 中提交带有 Linking 的 html 帖子表单。如果是,我们如何提交?
我想将它提交到默认浏览器(不使用 webview),这是 html 表单:
<form method="POST" target="..." id="..." :action="videoConferenceUrl">
<input type="hidden" name="target" value="..."/>
<input type="hidden" name="requestOrigin" value="..."/>
<input type="hidden" name="username" :value="..."/>
<input type="hidden" name="password" :value="..."/>
<input type="hidden" name="eventID" :value="..."/>
</form>
请写下我们如何在默认浏览器中提交该表单的所有方式。
提前致谢。