Hi,
Pelase take a look on the screen shot:
http://prntscr.com/4cwchq/direct
Regards.
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/
Have you had a chance to look at this?
Hello,
As soon as we have updates, we'll get back to you. This will take some time.
Hi Eascards,
You don't need to use here JSON.stringify. Cause of returned object just an ID. http://prntscr.com/4dwlj1/direct
So use:
pre
return bookId;
/pre
Regards.
So since I want the calf to show up, should I add this code right before return bookid or how should I do that. This is the code that I used before implementing the LVS.
var whereObject = {"calv_id": {"$regex": value, "$options": "i"}};
return JSON.stringify(whereObject);
Hi Eascards,
pre
var whereObject = {"calv_id": {"$regex": value, "$options": "i"}};
return JSON.stringify(whereObject);
/pre
The code above correct for "where" parameter where you need to pass json string.
But right code for "_id" parameter should return only string with ID.
Regards.
Hello,
Nope, that's not good.
Here is right code for you:
pre
var bookId = localStorage.getItem("bookid");
return bookId;
/pre
Regards.