-
Environment
Description of issueFollowing the tutorial, I try to use te
So I tried to follow exactly the tutorial by imitating So I am confused, where is the error : bad use or doc ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
The GET example you gave should work, are you sure that all the rows are returned? i. e. including the ones which For the Also, perhaps are you using Nginx or some other web server that changes the query parameters in some way? |
Beta Was this translation helpful? Give feedback.
-
I answer step by step : For my query with two fields : If it can help : Apache is my web server. |
Beta Was this translation helpful? Give feedback.
I answer step by step :
Close to the
GET
tutorial example :const test = fetch(url/ol_prescription?or=(gid.gt.18,gid.lt.100)
returns all the rows of the view as shown in the console :
For my query with two fields :
const test = fetch(url/ol_prescription?or=(ro.like.${ro},typope.like.${typope}) .then(rep => rep.json()) .then(ope => { console.log(ope) })
, the console returns :If it can help :
const test = fetch(url/ol_prescription?ro=like.${ro}
)` works fine.Apache is my web server.