我要尝试使用PhoneGap和WordPress Rest API创建一个移动应用。
这是我用来获取帖子列表的代码。
getPosts: function() {
var rootURL = 'https://examplesite.com/wp-json/wp/v2/posts/';
$.ajax({
type: 'GET',
url: rootURL,
dataType: 'json',
success: function(data){
$.each(data, function(index, value) {
$('ul.homepost-list').append('<li class="homepost-list__item">' +
'<a href="google.com">'+
'<img width="100" height="75" src="'+value.fimg_url+'" alt=""/>'+
'<h3>'+value.title.rendered+'</h3>' +
'<p>'+value.excerpt.rendered+'</p>'+
'</a>'+
'</li>');
;
});
},
error: function(error){
console.log(error);
}
});
}
这很好用,并显示了帖子列表。
我停留在创建单个帖子链接并单击链接'<a href="google.com">'
时显示其内容
我知道我可以使用帖子ID创建链接。
像'<a href="'+id+'">'single-post-link</a>
但是当我们单击此链接时,应该在哪里重定向它?
在WordPress中,我们必须将用户发送到single.php
。
在PhoneGap / JSON中,我们必须将其发送以及如何显示单个帖子内容?