[AjaxPro.AjaxMethod]不支持重载

前端之家收集整理的这篇文章主要介绍了[AjaxPro.AjaxMethod]不支持重载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

[AjaxPro.AjaxMethod]
public int getTimeHH(string cardID)
{
int result = 0;
DataSet ds = bll.getTimeHH(cardID);
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
result += Convert.ToInt32(ds.Tables[0].Rows[i]["服务时间"].ToString());
}
return result;
}

[AjaxPro.AjaxMethod]
public int getTimeHH(int teamID,string cardID)
{
int result = 0;
DataSet ds = bll.getTimeHH(teamID,cardID);
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
result += Convert.ToInt32(ds.Tables[0].Rows[i]["服务时间"].ToString());
}
return result;
}

js代码:function a()

{

var a=VoluntaryDemo.VoluntaryInfo.getTimeHH(ds.Tables[0].Rows[i].CCardNo).value;

}

获取到的参数是null,因为ajax不支持重载.

原文链接:https://www.f2er.com/ajax/166065.html

猜你在找的Ajax相关文章