我想在我的代码中添加filter参数。
我知道如何使用&添加多个过滤器参数。但我想为变量提供两个选项(sql查询将是...... where Account In("ABC,"DEF")
)。
dataSource: {
type: "jsonp",
transport: {
read: function(e) {
reportService.WebAPI('ByIUAct', {
Activity:'ABC',
Activity:'DEF',
OrderBy: getOrderBy(e.data.sort)
}).then(function (d) {
$scope.data = d;
e.success(d.Data);
});
}
},
如何将两个滤镜参数提供给我的api url?上面的代码带来了错误。
谢谢
答案 0 :(得分:-1)
这样做了
reportService.WebAPI('ByIUAct', {
Activity:'ABC, DEF',
}