You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I get empty responce when trying to fetch with Cyrillic params.
Example
localhost:8000/api/buildings?filter[building_class]=Komfort will response ok
And
localhost:8000/api/buildings?filter[building_class]=Комфорт will return empty response.
When I use common Laravel query builder where is no such issue.
return Building::where('building_class', 'Комфорт')->get();
I suppose the problem is in JSON format storing the Unicode.
I wonder how to construct GET request for filter in proper format?
Beta Was this translation helpful? Give feedback.
All reactions