Hi mọi người, cho em hỏi về hàm ajax , thì có cách nào để khi lỗi thì nó xuất ra alert khi sai không ạ(nghĩa là cách thêm condition để khi condition đúng thì nó chỉ thực hiện đến success là dừng ?)? chứ của em như ở dưới đúng sai nó đều xuất ra alert cả? thanks mọi người :
$.ajax({
url: '/path/to/file',
type: 'default GET (Other values: POST)',
dataType: 'default: Intelligent Guess (Other values: xml, json, script, or html)',
data: {param1: 'value1'},
success:function{},
error:function{}
})
.done(function() {
console.log("success");
})
.fail(function() {
console.log("error");
alert('Lỗi!')
})
.always(function() {
console.log("complete");
});