我有一个简单的页面,它使用 ID 从数据库返回的产品列表中查找特定产品,然后在 html 页面中显示该产品。当我使用 /api/products/12345 时,我能够看到我希望看到的 JSON,但是当我尝试从 Index.cshtml 页面查询数据时,我得到了结果 --> undefined: $undefined in my page。我将通过 Product 类和我的 html 页面。请注意,所有产品的显示都完美呈现。
public class Product
{
public int ID { get; set; }
public string ProductDescription { get; set; }
public string UnitOfMeasure { get; set; }
public decimal MSRP { get; set; }
public string Category { get; set; }
public int CategoryID { get; set; }
public string ZipCode { get; set; }
}
这是我的 Index.cshtml 页面
<html lang="en">
<head>
<title>.:: Web API ::.</title>
<script src="../../Scripts/jquery-1.6.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
// Send an AJAX request - the second parameter is a callback function that is invoked when the request successfully completes.
$.getJSON("api/products/",
function (data) {
// On success, 'data' contains a list of products.
$.each(data, function (key, val) {
// Format the text to display.
var str = val.ProductDescription + ': $' + val.MSRP;
// Add a list item for the product.
$('<li/>', { html: str }).appendTo($('#products'));
});
});
});
function find() {
var id = $('#prodId').val();
// Again, we call the jQuery getJSON function to send the AJAX request, but this time we use the ID to construct the request URI.
$.getJSON("api/products/" + id,
function (data) {
// On success, 'data' contains a list of products.
$.each(data, function (key, val) {
// Format the text to display.
var str = val.ProductDescription + ': $' + val.MSRP;
$('#products').html(str);
});
})
.fail(
function (jqXHR, textStatus, err) {
$('#products').html('Error: ' + err);
});
}
</script>
</head>
<body>
<div>
<h1>All Products</h1>
<ul id='products' />
</div>
<div>
<label for="prodId">ID:</label>
<input type="text" id="prodId" size="5"/>
<input type="button" value="Search" onclick="find();" />
<p id="product" />
</div>
我遇到的问题是 find() 函数渲染到 UI 有意义的数据,我看到匹配 ID 12345 的数据已成功返回。
谢谢。