我在构建网络服务时遇到麻烦,可以从txt文件中读取NBA球员的信息,然后将其显示在网页上。
首先,我在Models文件夹中构建了一个类。
namespace zuoye4.Models
{
public class Players
{
public string Registration_ID { get; set; }
public string Player_name { get; set; }
public string Team_name { get; set; }
public DateTime Date_of_birth { get; set; }
}
}
其次,我创建一个Controller来读取文件并将所有玩家添加到列表中。我还定义了一个GetAllPlayers方法来返回列表。
然后我创建一个html页面来显示列表。这是我的代码。
<!DOCTYPE html>
<html>
<head>
<title>PLALYERS</title>
<meta charset="utf-8" />
</head>
<body>
<div>
<h2>All Players</h2>
<ul id="players" />
</div>
<div>
<h2>Search by ID</h2>
<input type="text" id="prodId" size="5" />
<input type="button" value="Search" onclick="find();" />
<p id="product" />
</div>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.3.min.js"></script>
<script>
var uri = 'api/Players';
$(document).ready(function () {
// Send an AJAX request
$.getJSON(uri)
.done(function (data) {
// On success, 'data' contains a list of players.
$.each(data, function (key, item) {
// Add a list item for the player.
$('<li>', { text: formatItem(item) }).appendTo($('#playerList'));
});
});
});
function formatItem(item) {
return item.Registration_ID + ': $' + item.Player_name;
}
</script>
</body>
</html>
我做错了什么???
以下是教程如下。 https://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api
答案 0 :(得分:0)
您似乎将玩家列表项附加到ID为“playerList”的元素:
$('<li>', { text: formatItem(item) }).appendTo($('#playerList'));
问题是,“playerList”似乎不存在,我看到你有一个“玩家”而不是?
<ul id="players" />