作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我调用 dataStore.findAll(mapperName, params, opts)
其中 params
是
{
where: {
cc: {
'===': 'test'
}
},
}
我希望得到的查询字符串是 ?cc=test
。但是,它似乎对整个对象进行编码,因为生成的查询字符串是 ?where=%7B%22cc%22:%7B%22%3D%3D%3D%22:%22test%22%7D%7D
。 JSData 的查询功能是否不适用于 http 适配器?
这是关于 js-data
和 js-data-http
v3
最佳答案
您的语法是 filter
syntax ,而您应该能够为 findAll
syntax 执行以下操作:
{cc: '测试'}
关于javascript - JSData `where` 不适用于 `dataStore.findAll()`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48026360/
我是一名优秀的程序员,十分优秀!