62,243
社区成员




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