如果我致电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