Hello Alan,
To add data to database you need to use create service
https://devcenter.appery.io/documenta...
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/
Hello Alan,
To add data to database you need to use create service
https://devcenter.appery.io/documenta...
This is not very help helpful. I still don't know how to store the array. I expect the answer would be some JS code or something. I don't know.
I did use create service. Everything is working except the array. The question is I don't know how to store the array.
Hi Alan,
Please follow these steps:
Click on JS on needed link in mapping.
Details: http://prntscr.com/6yyy9e/direct
Populate it with following JS code:
pre
var str = value; //"tomato; potato; carrot";
var jsonArray = '["' + str.replace(/;/gi, '", "') + '"]';
var arrayObject = JSON.parse(jsonArray);
return arrayObject;
/pre
Regards.