为什么render_template不能在ajax中工作

时间:2017-03-24 15:20:57

标签: jquery python ajax

为什么render_template不能正常工作我试图创建一个登录表单,该表单在成功登录后返回主页

这是我的ajax代码     

this.myContext.Verifications.Include(x => x.User).Where(doesntmatter);

这是python

$(document).ready(function() {
  $('.logBtn').click(function() {
    $.ajax({
      data : {
        email : $('#emailInput').val(),
        password: $('#passInput').val()
      },
      type : 'POST',
      url : '/process'
    })
    .done(function(data) {
      if (data.error) {
        $('#errorAlert').text(data.error).show();
        $('#successAlert').hide();
      }
      else {
        $('#successAlert').text(data.name).show();
        $('#errorAlert').hide();
      }
    });
    event.preventDefault();
  });
});
</script>

0 个答案:

没有答案