Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/88.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 为什么我的CSS样式表不能链接到Grails中?_Html_Css_Grails_Web_Groovy - Fatal编程技术网

Html 为什么我的CSS样式表不能链接到Grails中?

Html 为什么我的CSS样式表不能链接到Grails中?,html,css,grails,web,groovy,Html,Css,Grails,Web,Groovy,我有一个非常基本的index.gsp文件: <!DOCTYPE html> <html> <head> <meta name="layout" content="main"/> <title>Example</title> <link type="text/css" href="${resource(dir: 'css', file: 'main.css')}" /> </head&

我有一个非常基本的index.gsp文件:

<!DOCTYPE html>
<html>
<head>
    <meta name="layout" content="main"/>
    <title>Example</title>
    <link type="text/css" href="${resource(dir: 'css', file: 'main.css')}" />
</head>
<body>
    <div class="test">This should be in cursive and blue</div>
</body>
</html>
main.css的路径是web app/css。我觉得这是一个非常小的问题,但我不能让我的行以草书和蓝色显示出来。但是,当我将以下内容添加到gsp文件的头段时,效果很好:

<style>
.test {
    font-family: cursive;
    color: blue;
}
</style>

您的应用程序使用的是资源还是资产管道插件?如果是这样的话,您应该通过定义模块/资源包在页面中包括资源,例如CSS和JavaScript文件,并包括这些资源,而不是单个文件


有关或插件的更多详细信息,请参阅文档。

除非默认包含这些插件,否则不会。我是否需要使用这些插件来简单地使用CSS?它们是,请查看BuildConfig.groovy以查看您已安装的插件。自Grails 2.4.X以来,默认包含asset-pipeline,在此之前,默认情况下包含资源。您不必使用这两个插件中的任何一个来包含CSS,但我们需要知道您的应用程序是否正在使用它们来回答您的问题。看起来我正在使用runtime:resources:1.1.6插件。有没有办法不使用这个插件而使用简单的CSS?如果我这样做,我会错过一些基本的东西吗?
<style>
.test {
    font-family: cursive;
    color: blue;
}
</style>
grails.servlet.version = "2.5" // Change depending on target container compliance (2.5 or 3.0)
grails.project.class.dir = "target/classes"
grails.project.test.class.dir = "target/test-classes"
grails.project.test.reports.dir = "target/test-reports"
grails.project.target.level = 1.6
grails.project.source.level = 1.6
//grails.project.war.file = "target/${appName}-${appVersion}.war"

// uncomment (and adjust settings) to fork the JVM to isolate classpaths
//grails.project.fork = [
//   run: [maxMemory:1024, minMemory:64, debug:false, maxPerm:256]
//]

grails.project.dependency.resolution = {
    // inherit Grails' default dependencies
    inherits("global") {
        // specify dependency exclusions here; for example, uncomment this to disable ehcache:
        // excludes 'ehcache'
    }
    log "error" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
    checksums true // Whether to verify checksums on resolve
    legacyResolve false // whether to do a secondary resolve on plugin installation, not advised and here for backwards compatibility

    repositories {
        inherits true // Whether to inherit repository definitions from plugins

        grailsPlugins()
        grailsHome()
        grailsCentral()

        mavenLocal()
        mavenCentral()

        // uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories
        //mavenRepo "http://snapshots.repository.codehaus.org"
        //mavenRepo "http://repository.codehaus.org"
        //mavenRepo "http://download.java.net/maven/2/"
        //mavenRepo "http://repository.jboss.com/maven2/"
    }

    dependencies {
        // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g.

        // runtime 'mysql:mysql-connector-java:5.1.22'
    }

    plugins {
        runtime ":hibernate:$grailsVersion"
        runtime ":jquery:1.8.3"
        runtime ":resources:1.1.6"

        // Uncomment these (or add new ones) to enable additional resources capabilities
        //runtime ":zipped-resources:1.0"
        //runtime ":cached-resources:1.0"
        //runtime ":yui-minify-resources:0.1.5"

        build ":tomcat:$grailsVersion"

        runtime ":database-migration:1.3.2"

        compile ':cache:1.0.1'
    }
}