小编rit*_*vik的帖子

渲染时捕获TypeError:__ init __()得到一个意外的关键字参数'use_decimal'

在运行程序时,我收到以下错误消息

Caught TypeError while rendering: __init__() got an unexpected keyword
argument 'use_decimal'
Run Code Online (Sandbox Code Playgroud)

这是我使用jquery 1.6.4的代码

def load_charts(chart_list=None, render_to=''):
    embed_script = (
      '<script type="text/javascript">\n'
      'var _chartit_hco_array = %s;\n</script>\n'
      '<script src="%s" type="text/javascript">\n</script>')

    if chart_list is not None:
        if isinstance(chart_list, (Chart, PivotChart)):
            chart_list = [chart_list]
        chart_list = [c.hcoptions for c in chart_list]
        render_to_list = [s.strip() for s in render_to.split(',')]
        for hco, render_to in izip_longest(chart_list, render_to_list):
            if render_to:
                hco['chart']['renderTo'] = render_to
        embed_script = (embed_script % (simplejson.dumps(chart_list, 
                                                         use_decimal=True),
                                        CHART_LOADER_URL))
    else:
        embed_script = embed_script %((), CHART_LOADER_URL)
    return …
Run Code Online (Sandbox Code Playgroud)

python django jquery typeerror

6
推荐指数
1
解决办法
6033
查看次数

标签 统计

django ×1

jquery ×1

python ×1

typeerror ×1