我在boostrap中创建了一个导航栏,下拉菜单,汉堡等都无法正常工作。我的意思是,单击它们时它们不会扩展。我以前曾与Bootstrap合作,过去从未遇到过此问题。我正在使用CDN上的Bootswatch,为了安全起见,我在进行测试后(无论是否使用)都添加了Bootstrap CDN,我仍然没有发现任何区别。
我正在使用ejs模板(此处未显示),以防解决问题。我只是希望我的代码采用任何人都可以测试而无需使用ejs的形式。
<div class="Download">
</div>
答案 0 :(得分:2)
我建议您在def get_recipes(handler):
json_structure = []
db = get_db(handler.config.DATABASE_URL)
db.create_session()
recipes = db.session.query(Recipe, func.coalesce(func.avg(Rating.rating).label('average'), 0)).\
outerjoin(Rating).group_by(Recipe.id).all()
for recipe in recipes:
json_structure.append({
"id": recipe[0].id,
"name": recipe[0].name,
"prep_time": recipe[0].prep_time,
"vegeterian": recipe[0].vegeterian,
"rating": float(recipe[1])
})
return 200, json.dumps(json_structure)
标签结束之前找到脚本标签。您可以check this link来了解为什么更好。
另外,您在Bootstrap链接后加载jQuery。我修改了。
<body>