I'm trying to dynamically load the new contents when user reaches the page end. My web app uses gae-python. I use ajax & jquery to update query in html.
HTML:
{% block content %}
<div class="hero-unit special-padding">
{% for h in hots %}
{{ h.imageid.get().render() | safe }}
{% endfor %}
{% include 'pager.html' %}
</div>
{% endblock %}
Jquery & AJAX:
$(window).scroll(function () {
if ($(window).scrollTop() + $(window).height() > $('.hero-unit').height() - 100 && !isLoading) {$('#loadpage').click(function() {
var page=$('#loadpage').attr('name');
$.ajax({
type: "POST",
dataType:"json",
url: '/loadpage',
data : {'page': page},
success: updatehtml,
});
return false;
});
});
function updatehtml(e){
for (var i = 0; i < e.length; i++) {
var html= "{{ "+e[i]['imageid']+".get().render() | safe }}";
$('.hero-unit').append(html);
}
}
I serialize the datastore entity and pass as json. It will update the HTML with
{{ datastoreKey.get().render()|safe }}
Now I want jinja2 framework to call python function .render() whenever the ajax update my HTML.
I know it can be done alternatively by writing the whole HTML code in javascript but I want to know is there any other easy/better way to do it.