I have tried like this from the response:
{success: true, result: {picture: "picture-1529913236852.jpg"}}
I need to get picture only from jsonstringify, Here is my code:
this.http.post('myurl', uploadData)
.subscribe(res =>{
console.log("meee"+JSON.stringify(res));
this.imageResp = JSON.stringify(res.picture) // here i cant take my picture values
});
please Help me.