在视图中可以从其网址呈现外部网页吗?我使用带有把手的主干网。
var AuthorizeInstagramView = Backbone.View.extend({
template: Handlebars.compile(template),
initialize: function () {
},
render:function(){
RENDER WEBPAGE FROM ITS URL
},
});
return AuthorizeInstagramView;
});
我该怎么做?
答案 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)
});
}