我正在使用表单提交 jquery 到 html 页面。数据成功传送到我的后端 beego(golang framework) 控制器。运行某些功能后,控制器必须决定下一步重定向的位置。但这被jquery阻止了。如何使用 go 代码覆盖 jquery 和重定向?
我的剧本
$().ready(function() {
$("#signupForm").validate({
rules: {
fullname: "required"
},
messages: {
fullname: "Please enter your full name"
},
submitHandler: function(form){
$(form).ajaxSubmit({
url: '/add_user',
type: 'POST',
dataType: 'html',
data : $( "#signupForm" ).serialize(),
success : function(data) {
}
});
return false
}
});
});
我的代码
status := user.AddUserAndCompany(company)
switch status {
case true:
this.Data["Website"] = "beego.me"
this.Data["Email"] = "astaxie@gmail.com"
this.TplName = "index.tpl"
case false:
this.Data["ErrorMessage"] = "ServerConnectionError"
this.Layout = "layouts/header_logout.html"
this.TplName = "templates/registration.html"
}
吃鸡游戏
慕田峪4524236
相关分类