gpt4 book ai didi

jquery - Ajax 从 mvc Controller 发送和获取

转载 作者:行者123 更新时间:2023-12-01 06:45:44 25 4
gpt4 key购买 nike

我想做的就是将邮政编码发布到 Controller ,对邮政编码执行一些操作,然后将更改发回邮政编码。但我的参数a始终为空。谁能告诉我我做错了什么?

这是我的代码:

查看:

<input type="text" id="zipcode" />

<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
var serviceURL = '/Employer/employer/index';
var zipcode = $("#zipcode").val();

$("#zipcode").blur(function () {
$.ajax({
type: "POST",
url: serviceURL,
data: {'a':zipcode},
contentType: "application/json; charset=utf-8",
success: successFunc,
error: errorFunc
});

function successFunc(data, status) {
alert(data);
}

function errorFunc() {
alert('error');
}
});
});

Controller :

public ViewResult Index()
{
return View();
}
[HttpPost]
public ActionResult Index(string a)
{
return Json("test", JsonRequestBehavior.AllowGet);

}

最佳答案

请注意,在用户有机会与其交互之前,您将邮政编码值存储到 document.ready 处理程序中的变量中。您应该在模糊处理程序中执行此操作,以确保采用实际值:

$("#zipcode").blur(function () {
var zipcode = $("#zipcode").val();
$.ajax({

关于jquery - Ajax 从 mvc Controller 发送和获取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28587686/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com