Page 1 of 3
create service bug has crippled my app
Posted: Tue Jun 24, 2014 10:14 pm
by Nalini
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.
create service bug has crippled my app
Posted: Tue Jun 24, 2014 10:27 pm
by obullei
Hello!
What happens when you try to create service?
Do you get any error message?
If it is possible please provide some screenshots.
create service bug has crippled my app
Posted: Tue Jun 24, 2014 11:03 pm
by Nalini
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.
create service bug has crippled my app
Posted: Tue Jun 24, 2014 11:08 pm
by Nalini
create service bug has crippled my app
Posted: Tue Jun 24, 2014 11:11 pm
by Nalini
//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.
create service bug has crippled my app
Posted: Tue Jun 24, 2014 11:37 pm
by Nalini
Hello, do u suggest that i delete page and start over? I'm actually at a hackathon
create service bug has crippled my app
Posted: Wed Jun 25, 2014 12:44 am
by Nalini
hello!!!!!!! any feedback?
create service bug has crippled my app
Posted: Wed Jun 25, 2014 12:55 am
by Yurii Orishchuk
Hello.
Please give us your App public link.
And describe steps to reproduce the problem.
Also plese specify what do you expect.
Regards.
create service bug has crippled my app
Posted: Wed Jun 25, 2014 1:01 am
by Nalini
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.
create service bug has crippled my app
Posted: Wed Jun 25, 2014 1:12 am
by Yurii Orishchuk
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.