这是我第一次工作并尝试淘汰赛,我无法让它上班。我正在做的是显示从数据库返回的列表/集合 - 基本上是所有用户获取其信息。
问题:到目前为止我所写的内容我没有得到数据显示在页面上而不确定我做错了什么或丢失了。如果我遗漏任何其他有助于解决我的问题的代码,请告诉我。谢谢!
查看页面
@using ProjectB.Shared.Models
@using System.Collections
@using ProjectB.Shared.Services
<html>
<head>
<script type ="text/javascript" src="~/Scripts/jquery-1.9.1.min.js"></script>
<script src="~/Scripts/knockout-2.2.1.js"></script>
<script src="~/Scripts/knockout.mapping-latest.js"></script>
</head>
<body>
<table data-bind="visible: RosterUsers().length>0">
<thead>
<tr>
<td>Name</td>
<td>Content Role</td>
<td>Email</td>
<td></td>
</tr>
</thead>
<tbody data-bind="foreach: RosterUsers">
<tr>
<td><span data-bind="text: Name"></span></td>
<td><span data-bind="text: ContentRole"></span></td>
<td><span data-bind="text: Email"></span></td>
</tr>
</tbody>
</table>
<script type ="text/javascript">
var rUserViewModel = function () {
var self = this;
self.Name = ko.observable("");
self.ContentRole = ko.observable("");
self.Email = ko.observable("");
var rUserData = {
Name: self.Name,
ContentRole: self.ContentRole,
Email: self.Email
};
self.RosterUsers = ko.observableArray([]);
GetRosterUser();
function GetRosterUser() {
$.ajax({
type: "GET",
url: "/api/RosterApiController",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
self.RosterUsers(data);
},
error: function (error) {
alert(error.status + " <--and--> " + error.statusText);
}
});
}
};
ko.applyBindings(new rUserViewModel());
</script>
</body>
</html>
模型
public partial class RosterVw
{
public RosterVw()
{
this.Users = new HashSet<RosterUser>();
}
public ICollection<RosterUser> Users { get; set; }
}
public partial class RosterUser
{
public string Name { get; set; }
public ContentRoles ContentRole { get; set; }
public string Email { get; set; } //Photo is unique to email address
}
答案 0 :(得分:0)
查看代码我假设您使用的是ASP.NET WebAPI。我应该将您的ajax电话地址从/api/RosterApiController
更改为/api/RosterApi
。
ASP.NET MVC和ASP.NET WebAPI都有路由约定,除了控制器名称没有 Controller
后缀。
答案 1 :(得分:0)
我认为Slawomir解决方案肯定是您应该注意的事情,但您可以尝试使用foreach来填充您的RosterUsers。
_.each(data, function(user){
self.RosterUsers.push(new RosterUserObject(user));
});