The File Input component not working on device
Im not sure what I am looking at o_0
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Im not sure what I am looking at o_0
This link helps https://getsatisfaction.com/apperyio/.... Now I am having trouble getting the created url from the success
Hello Adam,
Could you please detail what troubles do you have?
In the win(r) function there is r.response. I alert the variable and see response={filename:"", filurl:""} im trying to get the created fileurl from the response. I tried using r.response[0].fileurl it didnt work. How can I get the fileurl?
Hi Adam,
It works properly for us, tested on Android 4.0.x and Android 4.4.x.
Could you please make sure you do everything correctly?
Please check if file is saved to Database.
It saves perfectly into the database. It even shows the filr url in the alert (r.response); but I am trying to get just the fileurl from the r.response. I see response={filename : " nameOfFile", fileurl:"api.apppery.blah"} from the alert. I am trying to just get the fileurl from the r.response. How can I do this?
Hi Adam,
You have a json string in r.response, just parse it and use:prevar response = JSON.parse(r.response);
alert(response.fileurl);/pre