Sass Compass配置属性中的_dir和_path以及http_选项之间有什么区别?

Sass Compass配置属性中的_dir和_path以及http_选项之间有什么区别?,sass,compass,Sass,Compass,指南针的配置属性描述非常模糊。绝对不清楚,没有任何额外的解释或示例。这是: 这两者有什么区别 css_dir - ...where the css stylesheets are kept css_path - ...where css stylesheets are kept http_stylesheets_path - ...http path to stylesheets on the web server 这些呢 sass_dir - ...where the sass styles

指南针的配置属性描述非常模糊。绝对不清楚,没有任何额外的解释或示例。这是:

这两者有什么区别

css_dir - ...where the css stylesheets are kept
css_path - ...where css stylesheets are kept
http_stylesheets_path - ...http path to stylesheets on the web server
这些呢

sass_dir - ...where the sass stylesheets are kept
sass_path - ...where sass stylesheets are kept
这是极不可理解的。它们是什么意思?它们都是一样的:

images_dir - ...where the images are kept
images_path - ...where images are kept
generated_images_dir - ...where generated images are kept
generated_images_path - ...where generated images are kept
http_generated_images_path - ...generated images on the web server
这里也一样:

fonts_dir - ...where the font files are kept
fonts_path - ...where font files are kept
http_fonts_path - ...http path to font files on the web server
http_fonts_dir - ...http path to font files on the web server
如何理解彼此之间的区别?

阅读每个设置及其引用的设置的完整描述会有所帮助

Path应该是该项的完整/绝对路径,而dir应该是相对于其他内容的

项目路径 不需要:独立模式,可根据上下文推断。 设置项目根目录的路径

这是文件系统上项目的绝对路径

http_路径 在web服务器中运行时项目的路径。默认为/

这是从web上看到的项目的绝对路径

css_目录 保存css样式表的目录。它是相对于项目路径的。默认为样式表

css_路径 保存css样式表的完整路径。默认为/

http\u样式表\u路径 web服务器上样式表的完整http路径。默认为http_path+/+css_dir