我设置了一个datareader,每次返回结果时都会添加客户ID。
我已经设置了一个“下一条记录”按钮,该按钮将运行相同的查询但我想设置它以便返回的客户记录不等于我列表中存储的值。
有没有办法在我的MS Access查询的参数中引用列表?
myapp.controller('AutomationController',function(dataFactory,$scope){
$scope.devices;
$scope.userId=null;
loadDevices();
function loadDevices()
{
dataFactory.httpRequest('/user_devices').then(function (data) {
console.log(data);
$scope.devices=data;
})
}
$scope.changeStatus=function($device_id,$user_id,$status){
if($status)
{
$status=1;
}
else {
$status=0;
}
dataFactory.httpRequest('/device_status/'+$device_id,'PUT',{},
{"user_id":$scope.userId,
"status":$status
}).then(function(data) {
});
}
});