怎么通过ajax的回调函数返回一个数据库表格 后台怎么写
1个回答
展开全部
//C#后台
[WebMethod]
public static DataSet GetServer(int PartID)
{
DataTable dt = GameBLL.SelectDataTableByID(CommandType.StoredProcedure, "SelectServerByPartID", SelectBy.PartID, PartID);
DataSet ds = new DataSet();
ds.Tables.Add(dt.Copy());
return ds;
}
//jquery
$.ajax({
//要用post方式
type: "Post",
//方法所在页面和方法名
url: "SendGoods.aspx/GetServer",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: json_str,
success: function (data) {
var rows = data.d.tables[0].rows;
for (var rowIndex = 0; rowIndex < rows.length; ++rowIndex) {
$("<a>", {
id: "s" + rows[rowIndex]["GameServerID"],
class: 'gamea',
value: rows[rowIndex]["GameServerID"],
text: rows[rowIndex]["GameServerName"],
}).appendTo("#ServerDiv .info");
}
},
error: function (err) {
alert(err);
}
});
[WebMethod]
public static DataSet GetServer(int PartID)
{
DataTable dt = GameBLL.SelectDataTableByID(CommandType.StoredProcedure, "SelectServerByPartID", SelectBy.PartID, PartID);
DataSet ds = new DataSet();
ds.Tables.Add(dt.Copy());
return ds;
}
//jquery
$.ajax({
//要用post方式
type: "Post",
//方法所在页面和方法名
url: "SendGoods.aspx/GetServer",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: json_str,
success: function (data) {
var rows = data.d.tables[0].rows;
for (var rowIndex = 0; rowIndex < rows.length; ++rowIndex) {
$("<a>", {
id: "s" + rows[rowIndex]["GameServerID"],
class: 'gamea',
value: rows[rowIndex]["GameServerID"],
text: rows[rowIndex]["GameServerName"],
}).appendTo("#ServerDiv .info");
}
},
error: function (err) {
alert(err);
}
});
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询