0

こんにちは、Handlebars.js はまったく初めてで、JavaScript 自体もほとんど初めてです。そこで、次のことを試してみました: http://coenraets.org/blog/phonegap-tutorial/

パート 5 を完了し、ブラウザーでアプリをテストしたいと考えました。しかし、ページは空白です。ブラウザは handlebars.js を自分で認識し、handlebars テンプレートを自動的にレンダリングしますか? または、空白のページが表示されるのはなぜですか?

質問が基本的ではないことを願っていますが、続行する方法やエラーがどこにあるのかわかりません。index.html:

<html>
<body>
    <script id="home-tpl" type="text/x-handlebars-template">
        <div class='header'><h1>Home</h1></div>
        <div class='search-bar'><input class='search-key' type="text"/></div>
        <ul class='employee-list'></ul>
    </script>



    <script id="employee-li-tpl" type="text/x-handlebars-template">
        {{#.}}
        <li><a href="#employees/{{this.id}}">{{this.firstName}} {{this.lastName}}<br/>{{this.title}}</a></li>
        {{/.}}
    </script>


    <script src="lib/jquery-1.8.2.min.js"></script>
    <script src="js/storage/memory-store.js"></script>
    <script src="js/main.js"></script>
    <script src="lib/handlebars.js"></script>

</body>

main.js:

var app = {

findByName: function() {
    var self = this;
    this.store.findByName($('.search-key').val(), function(employees) {
        $('.employee-list').html(self.employeeLiTpl(employees));
    });
},

initialize: function() {
    var self = this;
    this.store = new MemoryStore(function() {
        self.renderHomeView();
    });
    this.homeTpl = Handlebars.compile($("#home-tpl").html());
    this.employeeLiTpl = Handlebars.compile($("#employee-li-tpl").html());
},

renderHomeView: function() {
    $('body').html(this.homeTpl());
    $('.search-key').on('keyup', $.proxy(this.findByName, this));
},

showAlert: function (message, title) {
    if (navigator.notification) {
        navigator.notification.alert(message, null, title, 'OK');
    } else {
        alert(title ? (title + ": " + message) : message);
    }
},

};

app.initialize();

main.js で次のエラーが発生します: ln. 15: Uncaught ReferenceError: Handlebars is not defined ln 20. :Uncaught TypeError: Object # has no method 'homeTpl'

よろしく、スナフ

4

2 に答える 2

2

スクリプトタグのhandlebars.js上に移動します。main.js

于 2013-11-11T20:33:02.813 に答える
0

私は上記の変更を行いました...これは非常に論理的だと思われました。ただし、上記の解決策は機能しませんでした。

以下を追加しました

this.homeTpl = Handlebars.compile($("#home-tpl").html());
this.employeeLiTpl = Handlebars.compile($("#employee-li-tpl").html());

renderHomeView関数で...私にとってはうまくいきます..... :)

renderHomeView: function()  {       
    this.homeTpl = Handlebars.compile($("#home-tpl").html());
    this.employeeLiTpl = Handlebars.compile($("#employee-li-tpl").html());
    $('body').html  ( this.homeTpl());
    $('.search-key').on('keyup', $.proxy(this.findByName, this));   
}   
于 2015-10-22T02:19:57.560 に答える