Dajaxice 0.5.1 - 似乎无法使教程工作
Posted
技术标签:
【中文标题】Dajaxice 0.5.1 - 似乎无法使教程工作【英文标题】:Dajaxice 0.5.1 - Can't seem to make the tutorial work 【发布时间】:2012-08-20 20:48:42 【问题描述】:我反复检查了我的资料,但找不到问题。 这是我的项目的布局:
项目 一切 初始化.py admin.py settings.py models.py views.py tests.py 静态 CSS 达贾西斯 dajaxice.core.js 图片 js 模板 testing.html 项目 ajax.py 初始化.py settings.py urls.py views.py wsgi.py manage.pysettings.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',
)
urls.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()
views.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')
testing.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>
它所做的一切就是制作一个发出警报的按钮。它应该非常简单,但我什么也没得到。我做错了什么?
【问题讨论】:
老实说,我发现 dajaxice 令人困惑。如今,Tastypie 似乎有了更大的吸引力(但它没有自己的客户端库——但也许这些天你不需要它)。 我从未使用过美味的派,但快速的谷歌搜索显示它相当复杂。如果 Dajaxice 和 Dajax 不起作用,我宁愿编写自己的序列化程序并使用 jquery 做所有事情。感谢您的意见。 (我知道这不是答案,但我无法发表评论)¿ 你能检查(使用萤火虫或类似的)你的 AJAX 请求吗? ¿ 它的工作 AJAX 调用? ¿ 浏览器中包含脚本 dajaxice.core.js 的内容是什么? ¿ 他们有你的sayhello映射? 【参考方案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
输出结果应位于某个临时文件夹中(取决于您的操作系统),而不应位于您应用的任何文件夹中。
【讨论】:
我遇到了与描述相同的问题。我实际上按照您所说的做了,并且确实在临时文件夹中得到了结果。但是,我没有 STATICFILES_DIRS 变量。以上是关于Dajaxice 0.5.1 - 似乎无法使教程工作的主要内容,如果未能解决你的问题,请参考以下文章
为啥 Dajaxice 和 Dajax 使用 MEDIAL_URL?