部分参数的语法

时间:2014-05-03 23:42:15

标签: dust.js

我似乎无法将参数的语法设置为部分。以下内容不断出现语法错误:Uncaught SyntaxError:预期的缓冲区,注释,部分,引用,部分或特殊但是" {"发现dust.js第60行。

<html>
<head>
<script type='text/javascript' src='/static/js/jquery.js'></script>
<script type='text/javascript' src='/static/js/dust.js'></script>
<body>
<p>TEST</p>
<p class='area1'>content_stuff</p>
<script>
$(document).ready(function() {
  dust.loadSource(dust.compile("THE PARTIAL IS: {>inner foo='bar' /} AND THATS ALL", "outer"));
  dust.loadSource(dust.compile("INNERPART", "inner"));
  dust.render("outer", {}, function(err, out) {
    console.log(out);
    $(".area1").html(out);
  });
});
</script>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

坚持使用最新的linkedin版本。我想你可能需要围绕bar param值的双引号。