我正在尝试使用玉模板创建模块化布局。我想将一个脚本块从一个孩子附加到它的父母父母中。我不太确定它是否可能。
这是我的结构
布局.jade
头玉
索引.jade
用户.jade
layout.jade: doctype html#html include head
body
block content
头玉:
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
block scripts
index.jade:
extends layout
block content
h1 Hello
include users
用户.jade
block append scripts
script(src='/javascripts/user.js')
ul
each user, i in users
li(class=i+"-"+user) #{user}
我想要的 html 输出应该是:
<!DOCTYPE html>
<html id="html">
<head>
<title>Index</title>
<link href="/stylesheets/style.css" rel="stylesheet">
<script src="/javascripts/user.js"> <!--// append this from user.jade into head.jade //-->
</head>
<body>
<h1>Hello bob</h1>
<li class="0-user1">user1</li>