def get_user_info(id: str, host='127.0.0.1', port=3000 ) -> str:
uri = 'http://{}:{}/users/{}'.format(host,port,id)
result = Requests.get(uri).json()
address = result.get('user',{}).get('address',None)
if address:
return address
else:
raise BadId
我正在尝试导航到selectedPhototag屏幕,当点击一个标记时,当前没有任何事情发生点击该应用程序其余部分的导航使用导航栏中的皮带所以如果我可以使用这些方法,我也确定想要将标记对象传递到新屏幕,应用程序正在使用Expo react Native
答案 0 :(得分:0)
1,首先绑定它:
<body>
<p >Spell a sentence backwards.</p>
<input id="numb">
<button type="button" onclick="myFunction()">Submit</button>
<p id="demo"></p>
</body>
2,这种情况你可以直接调用props.navigation.navigate:
constructor(props) {
super(props);
this.goTophototags = this.goTophototags.bind(this);
}