View on GitHub

基于Django与Ajax的搜索引擎

基于Django,可以自定义的异步搜索

Download this project as a .zip file Download this project as a tar.gz file

基于Django与Ajax的搜索引擎

基于Django,可以自定义的异步搜索

特性

安装要求

安装::

easy_install django-ajax-search

接下来,添加ajax_search 到你的 INSTALLED_APPS 并包含css和js::

INSTALLED_APPS = (
    'django.contrib.staticfiles',
    # Other apps here
    'ajax_search',
)

搞定你的URL::

urlpatterns = patterns('',
    # Other patterns go here
    url(r'^ajax_search/',include('ajax_search.urls')),
)