我正在尝试根据提供的ID来获取数据。
我该如何使用 this.props.navigation.getParam('prodId','Id')
在此结束
return fetch(http://192.168.0 1/file.php?......)
答案 0 :(得分:1)
您可以简单地做到:
myFunction = () => {
let id = this.props.navigation.getParam('prodId', 'Id')
return fetch("http://192.168.0.1/file.php?id=" + id)
}
您也可以只一行完成此操作:
return fetch("http://192.168.0.1/file.php?id=" + this.props.navigation.getParam('prodId', 'Id'))