用phonegap加载内容形式wordpress

时间:2013-12-20 09:30:20

标签: android wordpress cordova

我花了很多时间搜索如何将wordpress内容加载到我使用phonegap构建的应用中。
我已经安装了所有内容但是我坚持这个:< / p>

$(function(){
            $.ajax({
                url: 'http://ultravoz.org/api/get_recent_posts/',
                type: 'GET',
                dataType: 'json',
                success: function(data){
                    var source   = $("#blog-template").html();
                    var blogData = template(data);
                    $('#blog-data').html(blogData);
                    $('#blog-data').trigger('create');
                    dfd.resolve(data);

                },
                error: function(data){
                    console.log(data);
                }
            });
        });

和消息:

XMLHttpRequest cannot load http://ultravoz.org/api/get_recent_posts/. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.

感谢!!!

0 个答案:

没有答案