Question:
wix-data library query with eq() not working.
Product:
wix-data library (Working with Wix Data)
What are you trying to achieve:
Retrieving data from CMS in real time through the wix-data library
What have you already tried:
It was working normally before. Since 3-4 days ago, find() using eq() suddenly fails to retrieve data.
Additional information:
In cms, the find() function is properly performed on the value of a column with English letters through eq(). However, if you specify data in Korean rather than English characters, the data cannot be imported.
For example, in my code below:
wixData.query().eq(‘column_id’, ‘english_word’).find(); // this code work well
wixData.query().eq(‘column_id’, ‘한글단어’).find(); // this code doesn’t work.