我正在使用 Jquery Mobile 在 Dreamviewer 中制作基本的“新闻”应用程序。
我做了所有的设计,但现在是时候将 Json 数据从我的 api 服务器获取到我的应用程序中了。
这是我的 api 服务器链接;fe "http://mywebapiurl"
我想我需要编写关于 getJson 的 Jquery 函数,但我不知道怎么做?
我如何将它与小文章图片、文章标题和文章标题一起放入我的列表视图中?
这是我的列表视图的示例,我将展示来自 Json 的新闻。
<body>
<div data-role="page" id="home">
<div data-role="header">
<h1>Post Mobile</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li><a href="#headline">
<img src=ArticlePicture" class="ui-li-has-thumb"/>
<h3>ArticleTitle</h3>
<p>ArticleHeadline</p>
</a></li>
</ul>
</div>
<div data-role="footer" data-position="fixed">
<h4>© funky app </h4>
</div>
这是我尝试过的代码示例;
<script>
$(document).ready(function() {
$.getJSON("http://mywebapiurl", function(data) {
var result= "";
$.each(data.LatestNews, function(index, value) {
result+= "<ul><li><a href='#'><h3>"+value.TITLE+"</h3><p>"+value.SPOT+"</p></a></li></ul>";
});
$("#articleContainer").html(result);
})
});
</script>
等待你的答复。
非常感谢你。