我的服务器上安装了节点。我想执行一个 JavaScript 文件,它基本上从 Django 模型中获取一些信息。如何从 Django 内部将 JSON 和大型 textarea 变量传递到我的节点脚本中?
class Page(models.Model):
html = models.TextField(blank = True, null = True)
less = models.TextField(blank = True, null = True)
context = models.TextField(blank = True, null = True)
def render(self):
# pass context (converted to JSON), less and html to node script and compile.
# How to do this?
谢谢!