natysoz / expo-images-picker

Multiple Asset Photos Videos selecting package for Expo SDK
MIT License
95 stars 35 forks source link

Image path #10

Closed Ozzi48 closed 3 years ago

Ozzi48 commented 3 years ago

How to get image uri? I tried to write data.uri, but it shows that it is undefined.

Ozzi48 commented 3 years ago

const jsonValue = JSON.stringify(data); const jsonValue2 = JSON.parse(jsonValue); for(var i=0; i < Object.keys(jsonValue2).length; i++){ this.setState(prevState => ({ image: [jsonValue2[i]['uri'], ...prevState.image] })) }

Found solution.