gpt4 book ai didi

javascript - 无法使用用户控件调用 webmethod

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

我正在创建一个模式,当我单击时,我会将 id 和操作传递到服务器端以保存日志。

这是我的示例代码,但无法使其工作。我正在使用用户控件。

$("a.modal_show2").click(function () {
$(this).each(function () {
if ($(this)) {
var storecheckid = $(this).attr("id");
$.ajax({
type: "POST",
url: "TalkTalk.aspx/saveLogs",
data: {
action: 'video_tag',
clickedlinktag: storecheckid
},
dataType: "text",
success: function (response) {
console.log(response);
}
});
}
});
});
[System.Web.Services.WebMethod]
public static string saveLogs(string action, string clickedlinktag)
{
DataHelper.InsertLogs("TalkTalk", Convert.ToInt16(clickedlinktag), Convert.ToInt16(TwwId));
return clickedlinktag;
}

谢谢

最佳答案

data: JSON.stringify({ action: 'video_tag', clickedlinktag: storecheckid })

// response is a wrapper for your data. your data is in `d`.
success: function (response) {
console.log(response.d);
}

关于javascript - 无法使用用户控件调用 webmethod,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51266971/

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