-
python爬虫之django自定义过滤器实例
本站最新发布 Python从入门到精通|Python基础教程
试听地址 https://www.xin3721.com/eschool/pythonxin3721/
试听地址 https://www.xin3721.com/eschool/pythonxin3721/
需求:通过以键方式从字典中取值,如 test[key]=value
views.py
1
2
3
4
5
|
from django.template import RequestContext from django.shortcuts import render_to_response def view(request) dicts = { "key1" : 1 , "key2" : 2 , "key3" : 3 , } return render_to_response( "index.html" , { "dicts" :dicts,},context_instance = RequestContext(request)) |
1.在app目录下建立templatetags/在此目录下建立空文件__init__.py和myfilter.py
2.在myfilter.py编辑
1
2
3
4
5
6
7
8
9
10
|
from django import template register = template.Library() def key(d,key_name): value = 0 try : value = d[key_name] except KeyError: value = 0 return value register. filter ( 'key' ,key) |
3.在模板中使用
1
2
|
{ % load myfilter % } #加载自定认标签 {{dicts|key: "key1" }} |
栏目列表
最新更新
如何使用OS模块中的stat方法
Python os 模块
seek() 方法
python打开文件实例1
Python写入文件
什么是流?
文件操作如何进制逐行读取
Python相对路径
with创建临时运行环境
Python文件操作
.Net Standard(.Net Core)实现获取配置信息
Linux PXE + Kickstart 自动装机
Shell 编程 基础
Shell 编程 条件语句
CentOS8-网卡配置及详解
Linux中LVM逻辑卷管理
1.数码相框-相框框架分析(1)
Ubuntu armhf 版本国内源
Linux中raid磁盘阵列
搭建简易网站
access教程之Access简介
mysql 安装了最新版本8.x版本后的报错:
Mysql空间数据&空间索引(spatial)
如何远程连接SQL Server数据库的图文教程
复制SqlServer数据库的方法
搜索sql语句
sql中返回参数的值
sql中生成查询的模糊匹配字符串
数据定义功能
数据操作功能