在运行应用程序中的angularjs – Grails 3.0静态html

前端之家收集整理的这篇文章主要介绍了在运行应用程序中的angularjs – Grails 3.0静态html前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
之前曾经提到类似的问题,关于grails 2(.3,.4).我觉得很奇怪,我找不到一个办法,因为它似乎是一个标准的用例.

当我运行grails运行应用程序时,我只想提供html页面,包括它们链接的.css和.js(有角度和jQuery的内容).

我想检查我的http呼叫是否在双方正确使用 – 无需部署.war并配置数据库.

afaik grails run-app只是启动一个jetty / tomcat – 这两个都可以显着地提供.html页面.我需要做什么来使grails开发工具部署我的文件

我需要发出http请求,
所以使用不同的服务器会违反JS-SOP,
而部署.war会大大减缓开发过程

我迄今为止只发现了笨重的jsonp,代理,.war部署解决方案或者解决方

我尝试将文件放在项目的结构(/ src / main,/ src / main / resources,/ src / main / public,资产文件夹及其子文件夹)中,在每个子目录中创建了Web应用程序目录,Init,domain,conf目录 – 你命名)

将index.html添加到src / main / resources / public

然后将其添加到UrlMappings.groovy中:

"/"(redirect:"/index.html")

对于grails> = 3.0.12

Location of static resources

In order to resolve an issue around how POST requests are treated for
REST applications on non-existent resources,static resources located
in src/main/resources/public are now resolved under the /static/** URI
by default,instead of the base URI /**. If you wish to restore the
prevIoUs behavIoUr add the following configuration:

grails.resources.pattern = ‘/**’

https://github.com/grails/grails-core/releases/tag/v3.0.12

原文链接:https://www.f2er.com/angularjs/140813.html

猜你在找的Angularjs相关文章