LESS 样式不起作用

LESS styling not working

我在我的页面中使用 style.less 进行测试,但是当我 运行 在浏览器中使用文件协议时,我遇到了以下异常

XMLHttpRequest cannot load file:///C:/Users/Desktop/Web/less_sample/style/style.less. Cross origin requests are only supported for protocol schemes: http, data, chrome-extension, https, chrome-extension-resource.

但是当我 运行 在 localhost 中相同时它正在工作。 有人可以解释为什么即使在这两种情况下我都有 less.js 吗? 提前致谢。

Less 需要 运行 在服务器上才能工作。所以当你通过file://协议访问的时候,是无法处理的。使用 localhost 意味着您通过本地服务器访问它,因此可以处理文件。

错误说明了一切

当您使用 localhost 时,您使用的是 http:// 而不是 file://