基于URL的正则匹配

第一种的方式使用(

<li><a  target="_blank"  href="/CC/detail/?nid={{ k}}">{{ row.name }}</a></li>

url(r'^detail/', views.detail),

http://127.0.0.1:8000/CC/detail/?nid=3

def detail(request):
    print '2222222222222',request.GET
    nid =request.GET.get("nid")
    detail_info = USER_DICT[nid]
    return render(request,'detail.html',{"dict":detail_info})

<ul>
    {% for k,row in user_dict.items %}
        <li><a  target="_blank"  href="/CC/detail/?nid={{ k}}">{{ row.name }}</a></li>
    {% endfor %}
</ul>

  

第二种方式:(

<li><a  target="_blank"  href="/CC/detail-{{ k}}.html">{{ row.name }}</a></li>

url(r'^detail-(\d+).html', views.detail2),
http://127.0.0.1:8000/CC/detail-1.html

def detail2(request,nid):
    print '2222222222222',request.GET
    # nid =request.GET.get(nid)
    detail_info = USER_DICT[nid]
    return render(request,'detail.html',{"dict":detail_info})

<ul>
    {% for k,row in user_dict.items %}
        <li><a  target="_blank"  href="/CC/detail-{{ k}}.html">{{ row.name }}</a></li>
    {% endfor %}
</ul>

  

第三种方式,多个值的匹配:

url(r'^detail-(?P<nid>\d+)-(?P<uid>\d+).html', views.detail3),
def detail3(request,**kwargs):
    print kwargs
  

a. 
url(r'^detail-(\d+)-(\d+).html', views.detail),

def func(request, nid, uid):

pass

def func(request, *args):
args = (2,9)


def func(request, *args, **kwargs):
args = (2,9)

b. 
url(r'^detail-(?P<nid>\d+)-(?P<uid>\d+).html', views.detail)

def func(request, nid, uid):
pass

def funct(request, **kwargs):
kwargs = {'nid': 1, 'uid': 3}

def func(request, *args, **kwargs):
args = ()
kwargs = {'nid': 1, 'uid': 3}
 

转载于:https://www.cnblogs.com/qiangayz/p/8971438.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值