62,263
社区成员
发帖
与我相关
我的任务
分享



$.ajax({
type: 'get',
url: '/api/Test/Get',
dataType: "json",
success: function (data) {
}
});[HttpGet]
public DataTable Get()
{
DataTable dt = BLL.TestBLL.GetDt();
return dt;
}