簡単な質問です。ノード Template 内で Chartist.JS を使用して単純な棒グラフを表示しようとしていますが、スクリプトを実行するのに問題があるようです。私のコードの何が問題なのか、それを修正する方法を知っている人はいますか? 前もって感謝します。
私のマスター レイアウト ページ:
doctype html
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel='stylesheet', href="../bower_components/chartist/dist/chartist.min.css")
body
block content
次に、チャーティストコードを含むページ:
extends layout
block content
script(src="../bower_components/chartist/dist/chartist.min.js")
h1= title
p Welcome to #{title}
div(class="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
});