标签: svg dart dart-editor dart2js
我正在开发简单的在线建筑规划工具,它使用svg元素(dart:svg库)作为编辑器画布。开发构建在本机Dartium VM中运行良好,但在运行dart2js后,我在任何浏览器中都会出现下一个错误:
Uncaught TypeError: Object #<SVGAnimatedString> has no method 'split'
Dart在编译为js时不会显示任何错误。加载DOM后会出现错误,那么它可能是dart2js转换器问题吗?
提前致谢!
答案 0 :(得分:1)
AnimatedString没有split方法。
split
也许您正面临Issue 15787: className instance variable of SvgElement is an SVGAnimatedString instead of a string in dart2js。