我的ApiController
是
public List<FileModel> Get(string foldername)
在客户端,
function ListFiles(folder) {
$.ajax({
url: "/api/Files",
data: "foldername=" + folder,
type: "GET",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
console.log("msg: ", msg);
$('#Container').setTemplateURL('/Templates/files.htm', null, { filter_data: false });
$('#Container').processTemplate(msg);
}
});
console.log
显示检索到的msg
是:
[Object { Extension=".pdf", FileName="Microsoft.Press.MCTS.Se...ing.Kit.Exam.70-503.pdf", FilePath="C:\inetpub\Examples\Fil...ing.Kit.Exam.70-503.pdf", more...},
Object { Extension=".pdf", FileName="Microsoft.Press.MCTS.Se...ing.Kit.Exam.70-515.pdf", FilePath="C:\inetpub\Examples\Fil...ing.Kit.Exam.70-515.pdf", more...},
Object { Extension=".pdf", FileName="Microsoft.Press.MCTS.Se...xam.70.516.May.2011.pdf", FilePath="C:\inetpub\Examples\Fil...xam.70.516.May.2011.pdf", more...}]
而不是
的格式[{Extension=".pdf",...}, {...}, {...}]
为什么我会获得所有额外的Object
?我该如何删除它们?
答案 0 :(得分:1)
jQuery会自动将JSON解析为JavaScript对象,所以不要担心。这就是console.log()
打印对象的方式。