gpt4 book ai didi

Jquery $.post 方法

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

嗨,我有一个这样的方法:

 [AcceptVerbs(HttpVerbs.Post)]
public JsonResult GetPayeesJson(long id)
{
///TODO:
}

现在它被这样的 Javascript 函数调用并且运行良好:

$.post("/Payee/GetPayeesJson/" + payerData.Id, null, function (data) {
fillPayeeCache(data, payerData.Id);
fillPayeeSelect(payeeCache[payerData.Id]);
}, "json");

除了传递给方法 GetPayeesJson(long id) 的 id 之外,我还想传递一个包含表单名称的字符串。所以基本上我想对这样的方法进行后调用:

        [AcceptVerbs(HttpVerbs.Post)]
public JsonResult GetPayeesJson(long id, string formName)
{
//TODO:
}

我怎样才能做到这一点。提前致谢!

最佳答案

示例:请求 test.php 页面并发送一些附加数据(同时仍然忽略返回结果)。

$.post("test.php", { name: "John", time: "2pm" } );


来源:http://api.jquery.com/jQuery.post/

关于Jquery $.post 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7667220/

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