Jade 中不允许重复属性“{”

Duplicate attribute "{" is not allowed in Jade

我正在尝试将脚本放入 jade 中,但它不允许我使用多个花括号。这是我试图放入 jade 的图表代码。

body
    h1 Crimes by Category
    .ct-chart
    script(new Chartist.Bar('.ct-chart', {
    labels: ['XS', 'S', 'M', 'L', 'XL', 'XXL', 'XXXL'],
    series: [20, 60, 120, 200, 180, 20, 10]
    }, {
    distributeSeries: true
    });)

我收到重复属性“{”是不允许的。我不知道如何解决这个问题。任何帮助,将不胜感激。

要在 Jade 中插入 multi-line javascript,请使用 script. 标签(脚本内容缩进):

body
    h1 Crimes by Category
    .ct-chart

      script.
        new Chartist.Bar('.ct-chart', {
        labels: ['XS', 'S', 'M', 'L', 'XL', 'XXL', 'XXXL'],
        series: [20, 60, 120, 200, 180, 20, 10]
        }, {
        distributeSeries: true
        });

您可能还需要缩进脚本。如果你想把它放在你的 .ct-chart div.

来源:How can I render inline JavaScript with Jade?