0

我正在尝试在我的 javascript 中使用“for”Django 模板标签。我正在使用 Dojo 的 DataGrid 创建项目列表。这是我的代码:

<script type="text/javascript">
    require(['dojox/grid/DataGrid' , 'dojo/data/ItemFileWriteStore' , 'dojo/dom' , 'dojo/domReady!'],
      function(DataGrid, ItemFileWriteStore, dom){
        /*set up data store*/
        var data = {
          identifier: "id",
          items: []
        };

        {% for item in items_list %}
            data.items.push({ id: {{ item.url }} + '_' + {{ item.id }}, col1: {{ item.description }} });
        {% endfor %}

        var store = new ItemFileWriteStore({data: data});

        /*set up layout*/
        var layout = [[
            {'name': 'Description', 'field': 'id', 'width': '100px'}
        ]];

        /*create a new grid*/
        var grid = new DataGrid({
            id: 'grid',
            store: store,
            structure: layout,
            rowSelector: '20px'
        }, "grid");

        /*Call startup() to render the grid*/
        grid.startup();
    });
</script>

但是,当我转到我的网页时,我收到此错误:

Uncaught SyntaxError: Unexpected identifier

我做错了什么,我该如何解决?谢谢!

4

1 回答 1

0

您需要在字典中的值周围添加引号

data.items.push({ id: '{{ item.url }}_{{ item.id }}', col1: '{{ item.description }}' });
于 2013-08-05T15:38:18.687 回答