$(document).ready(function () {
$.ajax({
url: 'LeadPipes/LeadCounts',
type: 'POST',
contentType: 'application/json',
async: false,
success: function (data) {
alert(data)
}
});
});
我正在使用上面的 ajax 调用来获取模型,我将如何在成功函数中使用模型对象。就像我需要能够像 @model.Type 这样的视图模型一样使用数据。我怎么能用成功的json数据做到这一点?