我想在React组件中添加SVG。我使用不带JSX的CoffeeScript:

svg viewbox: '0 0 800 600',
   path
      id: 'top'
      d: 'M300,220 C300,220 520,220 540,220 C740,220 640,540'


我得到这个错误:

Error: Invalid value for <path> attribute d="M300,220 C300,220 520,220 540,220 C740,220 640,540"

最佳答案

似乎很合理,a cubic bezier defined using the C command must have 6 values following it,而您的最后一个只有4个。

10-06 03:56