Hi,
I have created an Object Under model storage.
"Content_Refresh_Array". Within this Object I have created Array string.
Within the Model Storage, I have created another model "Content_Refresh_List" of type Array "Content_Refresh_Array".
In Storage, I have create "Content_Refresh_Array" of type "Content_Refresh_List"
Below is my GET service response mapped to the created storage.
I want to get the value stored in "Data_Refresh_String" array. Its throwing me Error "Attempt to access Array by property name : 'Data_String_Refresh'"
Below is my code:
code
var refreshObj = Apperyio.storage.Content_Refresh_Array.get("$['Data_String_Refresh']");
console.log(refreshObj.length);
/code
I doubt on my way get value from storage is not correct. Any Help!