我在从内容目录中拉入页面时遇到问题我收到404错误但路径正确我正在使用Flask和jinja2模板
单击菜单按钮时,内容页面应显示在流上
127.0.0.1 - - [01 / Dec / 2015 21:44:02]“GET /dashboard/content/home.html HTTP / 1.1”404 -
#views.py
#templates/dashboard/content/home.html
@dashboard.route('/content/home')
@login_required
def home():
return render_template('/content/home.html')
jquery可以自行运行
/*Div Content change on menu click*/
$(document).ready(function(){
//Initial page load
$( ".stream-content" ).load( "/content/home.html");
//handle menu click
$("ul.stream-nav li a").click(function(){
var page = $(this).attr("href");
$(".stream-content").load("./content/" + page + ".html", function(){
});
return false;
});
});
菜单网址是这样的 家 当点击时我得到这条路径从哪里拉出大胆的部分? 127.0.0.1:5000 ** /仪表板/内容/ ** /仪表板/内容/ home.html的
答案 0 :(得分:0)
管理找到我使用标准块的答案,因此它在模板基础内的模板中的模板加载蒸汽和蒸汽负载 {%if if not standalone%} {%extends' content / stream.html' %} {%endif - %}