如何在React Native中动态传递URL中的两个以上值

时间:2019-07-04 08:40:34

标签: react-native

在本地存储的本机反应中动态添加URL中的参数,我添加代码如下:-

AsyncStorage.getItem('user', (err, result) => 
{ 
        console.log(err, result.id);
        var b = JSON.parse(result);
 }
}   

我想访问URL中的用户ID,然后使用它们

URL:“ http://8e1c930c.ngrok.io/api/api/polls/questions/+this.props.id+/+this.state.id+/vote/

当我访问(“ + this.state.id +”)时,它显示为字符串,而不获取用户ID。 因此,请给我一个访问本地存储值的想法。

我的网址看起来像ngrok中的

PATCH /api/api/polls/questions/+this.props.id+/+this.state.id+/vote/ 404未找到

0 个答案:

没有答案