无法将BIRT与Python Django集成

时间:2013-04-09 15:52:43

标签: python django django-views birt

我正在尝试将BIRT与Python Django集成。我在Django中创建了一个表单,允许用户将参数输入到报表中。提交表单时,视图将获取参数并创建请求并将其发送到BIRT Tomcat服务器。现在我试图从服务器呈现响应。这就是我的看法:

def birt_report(request, report_id, report_url=None, template='report_parameters.html'):
    if request.method == 'POST':
        form = ReportParametersForm(request.POST)
        if form.is_valid():
            report_params = form.save()
            form_id = report_params.id
            url = "http://<hostname>/BIRT-Viewer/frameset?__report=" + report_url + ".rptdesign"
            url += "&param_id=" + str(form_id)
            r = requests.get(url)
            return HttpResponse(content=str(r.content),status=200,content_type='text/html; charset=utf-8')
    else:
        form = ReportParametersForm()
        return render(request,template, {
            'form': form,
            'report_url': report_url,
            'report_id': report_id,
        })

一切正常,我试图渲染BIRT服务器发回给我的东西。我得到了默认的BIRT Web应用程序工具栏。但是,页面的报告部分是空白的。这是它的样子:

BIRT-report

在Eclipse Report Designer预览中正确生成报告。如何在此处显示报告?谢谢!

编辑:

我看了一下加载页面时发生了什么,我在Javascript控制台中收到了这个错误:

POST http://<hostname>/<Django_URL>/__sessionId=20130410_103510_658?__sessionId=20130410_103510_658 404 (NOT FOUND)
    prototype.js:656
Ajax.Request.Object.extend.request
    prototype.js:656
Ajax.Request.Object.extend.initialize
    prototype.js:631
(anonymous function)
    prototype.js:24
BirtCommunicationManager.connect
    BirtCommunicationManager.js:58
BirtEventDispatcher.sendEvent
    BirtEventDispatcher.js:179
BirtEventDispatcher.broadcastEvent
    BirtEventDispatcher.js:141
Object.extend.__init_pag
e    BirtNavigationBar.js:243
init
    <hostname>:1604
onload
    <hostname>:91

当我通过BIRT附带的BIRT Viewer webapp访问报告时,Javascript文件[b] prototype.js:656 [/ b]使用此URL:

http://<hostname>/BIRT-Viewer/frameset?__report=<report_name>.rptdesign&param_id=1&__sessionId=20130410_103510_658

而不是:

http://<hostname>/<Django_URL>/__sessionId=20130410_103510_658?__sessionId=20130410_103510_658

0 个答案:

没有答案