在Backbone中渲染外部网页

时间:2014-05-12 14:11:10

标签: javascript backbone.js handlebars.js

在视图中可以从其网址呈现外部网页吗?我使用带有把手的主干网。

var AuthorizeInstagramView = Backbone.View.extend({

    template: Handlebars.compile(template),


    initialize: function () {



    },



    render:function(){

        RENDER WEBPAGE FROM ITS URL
    },



  });

return AuthorizeInstagramView;

});

我该怎么做?

1 个答案:

答案 0 :(得分:1)

为什么不进行AJAX调用并输出响应内容?像

render: function() {
    // Render the template here..

    // Then make the AJAX call and output the response content.
    $.ajax({
        url: url,
        type: 'GET'
    }).done(function(response) {
        $("#content").html(response)
    });
}