我的Ajax代碼:如何將消息返回給ajax?
$.ajax({
type: 'POST',
url: URL + "xyz/" ,
data: {"email": email},
success: function(data) {
alert('hello')
},
dataType: "json",
});
我在Python +一瓶架構處理器:
def index():
if request.POST == XMLHttpRequest:
email = request.GET.get('email')
response.COOKIES['email'] = email
if check_email(email): //a method written for checking email
return some template
else:
return False //here i want to return some error message to ajax. How to
辦呢?以及如何抓住ajax中的錯誤。
拋出錯誤:NameError(「全局名稱'XMLHttpRequest'未定義」,) 是瓶支持嗎?
你是從哪裏複製的?大多數Pythons行沒有任何意義... – 2010-11-30 20:43:15