Error: jslint gives me error here for bad looping
Error: jslint gives me error here for bad looping
$http({
method: 'POST',
datatype: 'json',
url: '/CreateUser',
data: data
cache: false
}).success(function(data) { //Error:jslint gives me error here for bad looping
console.log(data.message);
}).error(function(error) {
console.log(error.message);
});
我在 Atom 编辑器中使用 jslint 包,我在其中传递回调响应时出现错误 Error:jslint在这里给我错误的错误循环 这是什么?
有人可以给我解释一下吗?
成功回调中有两个}
。
$http({
method: 'POST',
datatype:'json',
url: '/CreateUser',
data:data
cache: false
}).success(function (data){
console.log(data.message);
}).error(function (error){
console.log(error.message);
});
$http({
method: 'POST',
datatype: 'json',
url: '/CreateUser',
data: data
cache: false
}).success(function(data) { //Error:jslint gives me error here for bad looping
console.log(data.message);
}).error(function(error) {
console.log(error.message);
});
我在 Atom 编辑器中使用 jslint 包,我在其中传递回调响应时出现错误 Error:jslint在这里给我错误的错误循环 这是什么? 有人可以给我解释一下吗?
成功回调中有两个}
。
$http({
method: 'POST',
datatype:'json',
url: '/CreateUser',
data:data
cache: false
}).success(function (data){
console.log(data.message);
}).error(function (error){
console.log(error.message);
});