gpt4 book ai didi

css - 来自 Django 数据库的动态 LESS 变量

转载 作者:行者123 更新时间:2023-11-28 09:14:35 24 4
gpt4 key购买 nike

有没有办法在django中动态生成less变量定义?现在我可以使用 css 但在编译 LESS 时不能做到这一点

this实现看起来过于复杂且容易出错。

理想情况下,我希望在 varaible.less 文件中有一个变量,例如

@primary-color: {{ user.primary-color }};
@secondary-color: {{ user.secondary-color }};

最佳答案

你可以为你的变量创建一个 View 。less:

t = loader.get_template('variables.tpl')
c = Context(user)

return HttpResponse(t.render(c), mimetype="text/css");

然后使用 url() 函数在您的 less 代码中导入该 View :

@import (less) url('http://yoursite/variables');

关于css - 来自 Django 数据库的动态 LESS 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26346926/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com