suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Warum kann dies nicht erfolgreich gerendert werden?

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<p id="content"></p>
<script src="jquery-2.2.3.js"></script>
<script src="template-web.js"></script>
<script src="render.js"></script>
<script id="test" type="text/html">
    <h1>{{title}}</h1>
    <ul>
        {{each list as value i}}
        <li>索引 {{i + 1}} :{{value}}</li>
        {{/each}}
    </ul>
</script>
<script>
    var data = {
        title: '标签',
        list: ['文艺', '博客', '摄影', '电影', '民谣', '旅行', '吉他']
    };
    var html = template.render('test', data);
    document.getElementById('content').innerHTML = html;
</script>
</body>
</html>
高洛峰高洛峰2774 Tage vor358

Antworte allen(2)Ich werde antworten

  • ringa_lee

    ringa_lee2017-05-16 13:28:39

    报的什么错?type="text/html" 这是不是应该是text/template,你的数据格式对吗。

    Antwort
    0
  • 伊谢尔伦

    伊谢尔伦2017-05-16 13:28:39

    artTemplate里不需要什么render.js把
    另外最大的错误是这一句
    var html = template.render('test', data);
    应该改为
    var html = template('test', data);

    Antwort
    0
  • StornierenAntwort