首页 > 代码库 > Python web 周总结

Python web 周总结

按顺序查询

order_by()    order_by(- )

下拉框默认显示

<select name="canteen_type_id" id="" class="inputCont">{%for type in type_list%}{% if type.sct_id == plan.canteen_type_id %}<option value="{{type.sct_id}}"name="canteen_type_id"selected="selected">{{type.type_name}}</option> {% else %} <option value="{{type.sct_id}}"name="canteen_type_id">{{type.type_name}}</option>{% endif %}{%endfor%}</select>

float 0.0 不为空的方法

{%if dish.price != none%}<input type="text"value="{{dish.price}}" name="price"class="inputCont price">{%else%}<input type="text" name="price"class="inputCont price">{%endif%}

 

数据库逻辑是解决大部分问题的关键,各个表之间是靠主外键关联的。

Python web 周总结