不能让Jade语法正确

时间:2017-09-17 21:10:04

标签: javascript node.js pug

我有这个玉的布局文件,但每次我尝试渲染它我得到   "意外的文字;"在backgound:url(...)。我不知道该如何解决。我看过其他例子,他们这样做。

doctype html
 html
head
style
  body {
    background: url('!{imageURI}');
    background-size:75%;
    background-repeat: no-repeat;
  }
body
h1 Tweets
h1 #{tweet.text}
h1  @#{tweet.user.screen_name}

1 个答案:

答案 0 :(得分:0)

您的哈巴狗模板中有两个错误:

  1. html之前的领先空间
  2. style之后缺少点。
  3. 正确的模板看起来如此:

    doctype html
    html
    head
    body
    style.
      body {
        background: url('!{imageURI}');
        background-size: 75%;
        background-repeat: no-repeat;
      }
    h1 Tweets
    h1 #{tweet.text}
    h1 @#{tweet.user.screen_name}