我正在尝试将Chartist与sails.js结合使用,但出现错误提示


  宪章未定义]


我正在运行的代码是



<%new Chartist.Line('.ct-chart', {
  labels: [1, 2, 3, 4, 5, 6, 7, 8],
  series: [
    [5, 9, 7, 8, 5, 3, 5, 4]
  ]
}, {
  low: 0,
  showArea: true
});
%>





我不知道为什么会这样,但是我已经通过命令安装了Chartist


  npm安装Chartist


谢谢您的宝贵时间,希望我能尽快得到一些答复。

最佳答案

您正在尝试访问浏览器中安装的npm模块。您可以通过阅读本文来做到这一点。


  http://dontkry.com/posts/code/using-npm-on-the-client-side.html


我宁愿选择Bower或CDN代替npm。

凉亭


  凉亭安装图表师--save


CDN:


  <script src="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.js"></script> <link href="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.css" rel="stylesheet" type="text/css" />

关于javascript - 在Sails.Js上使用Chartist,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32800832/

10-09 13:56