django中怎麼設定連結,並自動重新整理,呼叫寫的方法

Como0413發表於2018-05-10

在View.py中寫一個方法

列如:

        

#搜尋頁面
type = None
def detail(requests):
    global type
    type = requests.GET['type']
    if requests.GET.get('pagenum')==None:
        pagenum = 1
    else:
        pagenums = requests.GET['pagenum']

    item =  vsql.gettable(type, pagenum)
    context={'item':item}
    # print context
    return render(requests, "sousuo.html", context)
在html中的連結:<a href="detail?type=mz">美妝</a>

相關文章