我的 views.py 文件如下:
from django.shortcuts import render, render_to_response
from chartit import DataPool, Chart
from chartit.chartdata import DataPool
from weather.models import MonthlyWeatherByCity
import simplejson
from chartit import DataPool, Chart
def weather_chart_view(request):
ds=DataPool(series=[{'options': {'source': MonthlyWeatherByCity.objects.all()},'terms': ['month','houston_temp','boston_temp']}])
cht = Chart(datasource = ds, series_options =[{'options':{'type': 'line','stacking': False},'terms':{'month': ['boston_temp','houston_temp']}}],chart_options ={'title': {'text': 'Weather Data of Boston and Houston'},'xAxis': {'title': {'text': 'Month number'}}})
return render_to_response('chart.html',{'weatherchart': cht})
应用内的 urls.py 文件如下:
from django.conf.urls import include, url
from django.contrib import admin
from weather import views
urlpatterns = [
url(r'^$', views.weather_chart_view , name='weather_chart_view')
]
models.py 文件如下:
from django.db import models
class MonthlyWeatherByCity(models.Model):
month = models.IntegerField()
boston_temp = models.DecimalField(max_digits=5, decimal_places=1)
houston_temp = models.DecimalField(max_digits=5, decimal_places=1)
chart.html 文件如下:
<head>
<!-- code to include the highcharts and jQuery libraries goes here -->
<!-- load_charts filter takes a comma-separated list of id's where -->
<!-- the charts need to be rendered to -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="http://code.highcharts.com/highcharts.js" type="text/javascript"></script>
<script src="/highcharts.js" type="text/javascript"></script>
{% load chartit %}
{{ weatherchart|load_charts:"container" }}
</head>
<body>
<div id='container'> {{ weatherchart|load_charts:"container" }}</div>
</body>
在运行服务器并打开应用程序时,我收到错误:
TemplateSyntaxError at /weather/
'chartit' is not a valid tag library: ImportError raised loading chartit.templatetags.chartit: cannot import name simplejson
我还在 INSTALLED_APPS 中加入了app,chartit和json。
如您所见,我还在视图中导入了simplejson。我哪里错了?
请建议我是否需要发布其他任何内容以使问题清晰。
答案 0 :(得分:13)
在项目的github页面上有一个问题的修复程序。执行pip install simplejson
然后在chartit模块中找到文件chartit/templatetags/chartit.py
并替换simplejson import行,如下所示。
from django import template
-from django.utils import simplejson
+import simplejson
from django.utils.safestring import mark_safe
它看起来像一个黑客,但在修复合并之前一直有效。
答案 1 :(得分:7)
您需要在“settings.py”中将chartit
添加到INSTALLED_APPS
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'chartit',
)
然后,请关注@akoshodi的回复。
答案 2 :(得分:1)
在 chartit (0.2.8)的最新版本中,问题已修复,因此唯一事情应该是添加'正如@MiaeKim所提及的那样,在 INSTALLED_APPS 中的'chartit'。