Check the Network tab -- you might see the failing request there.
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/
Check the Network tab -- you might see the failing request there.
There is JS error on "Choose" screen-"restservice11"-"favorites"-"Edit JS".
Your code:
pre
ar i, j, arr, tmpArr, obj;
/pre
should be:
pre
var i, j, arr, tmpArr, obj;
/pre
You missed one symbol.
Do you use tmpArr in some other functions? Please check your code.
Hi Alena,
No I dont use tmpArr in other functions, it has been added to mapping in "favoritesupdate" service
Hi Michael,
Could you please tell us how to reproduce this error? I can't get it.
Hi Igor
login to app, you can use "test" for name and pass,
click book button,
on selectmenu choose a town,
when collapsible appears, click the green save button,
this gives the error,
thanks Igor
"favorites"-"Edit JS"
replace:
pre
for (i = 0, j = arr.length; i < j; i++)
/pre
to
pre
for (i = 0, j = arr.length-1; i < j; i++)
/pre