My simple create service is not working. I am experienced with appery, please do not send me to the tutorial. I had the service working, then it stopped. There seems to be a bug somewhere. Please offer me some suggestions.
My simple create service is not working. I am experienced with appery, please do not send me to the tutorial. I had the service working, then it stopped. There seems to be a bug somewhere. Please offer me some suggestions.
Hello!
What happens when you try to create service?
Do you get any error message?
If it is possible please provide some screenshots.
I just get my error alert. I tested the service and it works but when I attempt to test through the UI, I get my error message.
//js on birthdate =
d = new Date(value);
return d.toISOString().replace("T"," ").replace("Z"," ");
//js on 'the_user" =
return {"id":""+ value +"","the_user":"users"};
profile was working just fine with both scripts, then it just stopped.
Hello, do u suggest that i delete page and start over? I'm actually at a hackathon
hello!!!!!!! any feedback?
Hello.
Please give us your App public link.
And describe steps to reproduce the problem.
Also plese specify what do you expect.
Regards.
The link is
http://appery.io/app/mobile-frame?src...
Just add a couple of entries and click submit. Page should process and navigate to next page, instead i get my error alert.
I'd like someone to look at the page to see if there's a bug.
I see next reason of your error: http://prntscr.com/3w7ena/direct
pre
'collName' is missing for pointer column 'the_user'
/pre
So if we back to your request, there is: http://prntscr.com/3w7f9i/direct
pre
"the_user":{"id":"","the_user":"users"}
/pre
Your "the_user" field is pointer, so you should use "callName" instead of "the_user".
Change it to:
pre
"the_user":{"id":"","callName":"users"}
/pre
Did you change it?
Regards.