1

我反复检查了我的东西,但我找不到问题。这是我的项目的布局:

  • 项目
    • 所有的东西
      • 初始化.py
      • 管理员.py
      • 设置.py
      • 模型.py
      • 视图.py
      • 测试.py
    • 静止的
      • css
      • 达贾西斯
        • dajaxice.core.js
      • 图片
      • js
    • 模板
      • 测试.html
    • 项目
      • ajax.py
      • 初始化.py
      • 设置.py
      • 网址.py
      • 视图.py
      • wsgi.py
    • 管理.py

设置.py

DEBUG = True
MEDIA_ROOT = ''
MEDIA_URL = ''
STATIC_ROOT = ''
STATIC_URL =/static/

STATICFILES_DIRS = (
    'C:/Python27/djcode/project/static',
)

STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
    'dajaxice.finders.DajaxiceFinder',
#    'django.contrib.staticfiles.finders.DefaultStorageFinder',
)

TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
    'django.template.loaders.eggs.Loader',
)

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    # Uncomment the next line for simple clickjacking protection:
    # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
)

ROOT_URLCONF = 'project.urls'
WSGI_APPLICATION = 'project.wsgi.application'

TEMPLATE_CONTEXT_PROCESSORS = (
    'django.contrib.auth.context_processors.auth',
    'django.core.context_processors.debug',
    'django.core.context_processors.i18n',
    'django.core.context_processors.media',
    'django.core.context_processors.static',
    'django.core.context_processors.request',
    'django.contrib.messages.context_processors.messages'
)

TEMPLATE_DIRS = (
    "C:/Python27/djcode/project/templates"
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
    # Always use forward slashes, even on Windows.
    # Don't forget to use absolute paths, not relative paths.
)

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
'allthings',
'dajaxice',
    # Uncomment the next line to enable the admin:
    'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    'django.contrib.admindocs',
)

网址.py

from django.conf.urls import patterns, include, url
from project.views import hello, testing
from dajaxice.core import dajaxice_autodiscover, dajaxice_config
dajaxice_autodiscover()
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    ('^hello/$', hello),
    ('^testing/$', testing),
    url(dajaxice_config.dajaxice_url, include('dajaxice.urls')),

    # Uncomment the admin/doc line below to enable admin documentation:
    url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
)


urlpatterns += staticfiles_urlpatterns()

视图.py

from django.shortcuts import render_to_response, HttpResponse
from django.template import RequestContext
from dajaxice.core import dajaxice_autodiscover 
dajaxice_autodiscover()

def hello(request):
    return HttpResponse("Hello world!")

def testing(request):
    return render_to_response('testing.html', context_instance = RequestContext(request))

ajax.py

from django.utils import simplejson
from dajaxice.decorators import dajaxice_register

@dajaxice_register
def sayhello(request):
    return simplejson.dumps({'message':'Hello World'})

测试.html

<!DOCTYPE html/>
{% load dajaxice_templatetags %}
<html>
<head><title></title>
{% dajaxice_js_import %}
<script>
function my_callback(data){
    alert(data.message);
}
</script>
</head>
<body>
    This is to test stuff
    <input type="button" onclick="Dajaxice.project.sayhello(my_callback)" value="Get Message from Server"></input>
</body>
</html>

它所做的一切就是制作一个发出警报的按钮。它应该非常简单,但我什么也没得到。我究竟做错了什么?

4

1 回答 1

1

因为dajaxice.core.js是一个非静态模板文件,DajaxFinder所以会找到它并将其作为静态文件“渲染”到临时文件夹。

因此,您的STATICFILES_DIRS设置不应包含文件路径,dajaxice.core.js否则文件将由FileSystemFinder而不是DajaxFinder.

您可以运行findstatic以检查是否正确找到它:

manage.py findstatic dajaxice\dajaxice.core.js

或者可能:

manage.py findstatic dajaxice/dajaxice.core.js

输出结果应位于某个临时文件夹中(取决于您的操作系统),并且不应位于您应用程序的任何文件夹中。

于 2013-05-17T01:50:30.243 回答