Issue with JS array stored in an Airtable long text field

Hello everyone,

I have an issue with an array : I store it in JS format inside a long text field in Airtable.

But when I fetch the data and try to use it, Weweb considers this as a string, and I don’t know how to convert it into an array, I see nothing relevant in the integrated tools…

Thanks in advance for your help

Use JSON.parse([your_array_in_string_format])

Use JSON.parse() to convert the string back into an array after fetching the data. Just make sure the string is properly formatted JSON. It should help you work with the data as an array in Weweb.

Thank you @Broberto and @webpowl for your help ! It works perfectly