我正在开发一个 asp.net mv3 应用程序。
在一个助手类中,我有一个方法可以根据他的 ID 返回一个人的对象
public Person GetPersonByID(string id)
{
// I get the person from a list with the given ID and return it
}
在一个视图中,我需要创建一个可以调用的 jquery 或 javascript 函数GetPersonByID
function getPerson(id) {
//I need to get the person object by calling the GetPersonByID from the C#
//helper class and put the values Person.FirstName and Person.LastName in
//Textboxes on my page
}
我怎样才能做到这一点?
这可以通过使用和ajax调用来完成吗?
$.ajax({
type:
url:
success:
}
});
任何帮助是极大的赞赏
谢谢