当我创建标签时,<g:javascript src="highcharts/highcharts.js?v=255" />
我收到错误:
I can't work out the type of /tools/js/highcharts/highcharts.js?v=205 with type [text/javascript]. Please check the URL, resource definition or specify [type] attribute
文档说 g:javascript 没有 type 属性,在查看 grails 源代码后,我发现它使用 FileNameUtils.getExtension() 来确定资源的类型。由于这只是执行 lastIndexOf('.') 并返回右侧,因此显然不会找到它。在这种情况下,我们真的不需要添加 v=255,所以我现在可以删除它,但是我仍然希望将来能够这样做。我在这里有什么选择?
Grails 版本是 2.1.2