通过导航将数据传递到webview反应本机

时间:2020-07-01 15:22:38

标签: react-native android-webview

所以我有一个带有提交功能的表单,我想做的就是从此表单中获取数据

enter image description here

以此Webview形式显示

enter image description here

这是我的提交功能

submit = () =>{
    this.props.navigation.navigate('WebViewStaging');
   
  }

最后这是我的webview js

render(){
        return(
            <WebView
                style={{flex:1}}
                source={{ uri: 'https://campaign.futuready.com/smarkparking', body: 'id_user:user.ID & name:form.name & email:form.email & phone:form.phone & license_plate:form.plate & car_brand:form.carbrand & car_model:form.carclass & car_make_year:form.year', method: 'POST'}}
                renderLoading={()=>(<ActivityIndicator/>)}
            />
        )
    }

那我该怎么办才能正确传递数据?

0 个答案:

没有答案