nvd3相关的“获取”请求在演示项目中失败了吗?

时间:2014-06-16 23:24:46

标签: django d3.js nvd3.js

我正在运行django-nvd3演示项目并看到饼图未显示。 我看到以下请求失败

GET http://localhost:8000/static/nvd3/src/nv.d3.css
GET http://localhost:8000/static/nvd3/src/nv.d3.css  show_graph:3
GET http://localhost:8000/static/nvd3/nv.d3.min.js  show_graph:5
GET http://localhost:8000/static/d3/d3.min.js 

我已经安装了python-nvd3及其所有依赖项。这是我的设置文件配置

    BASE_DIR = dirname(dirname(__file__))

# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.6/howto/deployment/checklist/

# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
STATIC_ROOT = join(BASE_DIR, 'static')

BOWER_COMPONENTS_ROOT = join(BASE_DIR, 'components')

# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/'

# Additional locations of static files
STATICFILES_DIRS = (
    # Put strings here, like "/home/html/static" or "C:/www/django/static".
    # Always use forward slashes, even on Windows.
    # Don't forget to use absolute paths, not relative paths.
)

# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
    'compressor.finders.CompressorFinder',
    'djangobower.finders.BowerFinder',
)

BOWER_INSTALLED_APPS = ( 
    'jquery', 
    'underscore', 
    'd3#3.3.6', 
    'nvd3#1.1.12-beta', 
)

我错过了什么?

1 个答案:

答案 0 :(得分:0)

在生产环境中,您必须使用您选择的Web服务器提供静态文件。您的设置中的注释表明您正在运行开发服务器。在这种情况下,只需将'django.contrib.staticfiles'添加到已安装的应用中即可。在DEBUG = True时,staticfiles应用会自动提供STATICFILES_DIRS中的静态文件或使用python的各种STATICFILES_FINDERS来传输响应。

不要在生产环境中使用它,因为它效率低且可能不安全。

相反,使用您的网络服务器(Apache,IIS,gunicorn等)来提供静态文件。 collectstatic管理命令会将所有静态文件收集到中心位置(您的STATIC_ROOT)。然后设置您的网络服务器以提供此位置的静态文件。

有关如何执行此操作的详细信息,请参阅'Deploying static files'和您的网络服务器文档。