Grails Asset-pipeline does not load angular partial templates

拜拜、爱过 提交于 2020-01-02 03:25:08

问题


Im using angular-ui-bootstrap with Grails 2.3.x asset-pipeline:1.6.1 plugin. One of the components - alert.js is attempting to load /template/alert/alert.html but this resolves to 404.

I tried including grails.assets.includes=[*/.html], did not help.

Any workaround for this? Anyway to let asset-pipeline include partial templates?


回答1:


Is template located in assets, if so remember the first level folders inside of assets are flattened so you may want to nest your templates one more level or adjust your path




回答2:


I have tried putting the /partials directory under /web-app. It ends up like:

/web-app/partials/content.html

I don't need to mess about with asset-pipeline, it just works!

The versions I use are:

  • Grails: 2.4.2
  • compile ":asset-pipeline:1.8.11"

Hope this helps anyone who upgrades their Grails version as well.




回答3:


thanks for your great blog about AngularJS and Grails, which jumpstarted me on this topic.

Regarding partials, I assume the assets directory is not the right place to put them, because they get concatenated and minified in production mode.

Instead, I use GSP templates as AngularJS partials. For example, I have

views/partials/login.gsp

<div>Hello World!</div>

conf/UrlMappings.groovy

static mappings = {
  ...
  '/partials/login'(view:'/partials/_login')
}

grails-app/assets/javascript/

...
templateUrl: 'partials/login',
...

Advantage: You may even use script lets and taglibs in the partials.

An alternative to using GSP directly would be James Kleeh's approach in this thread.

Best regards, Björn



来源:https://stackoverflow.com/questions/22086832/grails-asset-pipeline-does-not-load-angular-partial-templates

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!