0

私は両方を使用しておりBackbone.jsUnderscore.js
IE9 を含む他のすべてのブラウザーで正常に動作していますが、 IE8
でこのエラーが発生しています

SCRIPT1010: Expected identifier 
underscore.js, line 1156 character 7

以下は、エラーが発生しているコードです

テンプレート

<script type="text/template" id="maps-template">
    <% _.each(data, function(d) { %>
        <map id="<%= d.for %>" name="<%= d.for %>">
            <% _.each(d.area, function(d) { %>
                <area shape="<%= d.shape %>" alt="<%= d.alt %>" title="<%= d.title %>" coords="<%= d.coords %>" href="<%= d.href %>" target="_blank" />
            <% });  %>
        </map>
    <% });  %>
</script>

テンプレートのレンダリング

pc.ui.Maps = Backbone.View.extend({
    initialize: function() {
        this.render();
    },
    render: function() {
        var template = _.template($("#maps-template").html(), {data: pc.products.maps});
        $('body').append(template);
        return this;
    }
});

var view = new pc.ui.Maps();

pc.products.maps以下に示すようなオブジェクトの配列はどこですか

pc.products.maps = [
    {
        for: "dept_a",
        area: [
            {
                coords: '426,136,618,173',
                shape: 'rect',
                href: 'example.com',
                title: '',
                alt: ''
            },
            {
                coords: '427,156,718,173',
                shape: 'rect',
                href: 'example.com',
                title: '',
                alt: ''
            },
            {
                coords: '428,186,818,173',
                shape: 'rect',
                href: 'example.com',
                title: '',
                alt: ''
            }
        ]
    },
    {
        for: 'dept_b',
        area: [
        .....
        ]
    }
];

Plzは、私がどこで間違っているかを知るのを手伝ってくれます.

4

1 に答える 1

1

私はちょうど推測しています、多分for予約語ですか?オブジェクト配列に二重引用符で囲む"for" : 'dept_b'か、そのプロパティ名を変更してください。

于 2013-02-06T11:09:48.530 に答える