0

次のコードは、「Uncaught TypeError: Object data-ember-action="4" has no method 'replace'」というメッセージで失敗します。 -- Handlebar ヘルパーが、このメソッドを欠いている Handlebar SafeString を取得しているようです。

トリプル ブレース アクション {{{action ...}}} が機能しているように見えることに注意してください。

    <h1>Skills</h1>

    <script type="text/x-handlebars" data-template-name="skill-list">
        <table class="datagrid" style="width: 100%">
            <thead>
            <tr>
                <td colspan="5" class="controls">
                    Search <input type="text" value="" class="search_field"/>
                </td>
            </tr>
            <tr>
                <th class="id_sort">ID</th>
                <th class="name_sort">Name</th>
                <th class="basis_sort">Basis</th>
                <th class="type_sort">Type </th>
                <th>&nbsp;</th>
            </tr>
            </thead>
            <tbody>
            {{#view SKILLS.skill_items }}

            {{#each skills }}
            <tr>
                <td>
                    {{ _id }}
                </td>
                <td>{{ name }}</td>
                <td>{{ basis }}</td>
                <td>{{ type }}</td>
                <td class="control">
                    <button class="edit"><span class="icon"></span> Edit</button>
                </td>
            </tr>
            {{/each }}

            {{/view }}
            </tbody>
            <tfoot>
            <tr>
                <th class="id_sort">ID</th>
                <th class="name_sort">Name</th>
                <th class="basis_sort">Basis</th>
                <th class="type_sort">Type </th>
                <th>&nbsp;</th>
            </tr>
            <tr>
                <td colspan="5" class="controls">

                    <button class="add" {{action "add_skill"}} >Add Skill
                    </button>
                </td>
            </tr>
            </tfoot>
        </table>
    </script>

    <script type="text/x-handlebars" >
        {{view SKILLS.skills_view}}
    </script>​

    <script language="javascript">

        var SKILLS;

        $(function () {
            SKILLS = Ember.Application.create({

                Skill: Ember.Object.extend({
                    id: 0,
                    name: '',
                    basis: ''
                }),

                skills: [],

                add_skill: function(){

                }

            });

            SKILLS.skills = _.map([
                {name:"throwing", basis:"speed", type: 'skill', _id:0},
                {name:"spech", basis:"will", type: 'skill', _id:1}
            ], function(s){ return _.extend(new SKILLS.Skill(), s)});

            SKILLS.skill_items = Ember.View.extend({
                skillsBinding: 'SKILLS.skills'
            });

            SKILLS.skills_view = Ember.View.extend({
                templateName:'skill-list',
                add_skill: function(){
                    SKILLS.add_skill();
                }
            });

        })
    </script>
4

1 に答える 1

3

これがあなたのコードの動作バージョンです:http://jsfiddle.net/Sly7/2F2y9/ 私はいくつかの奇妙なコードをクリーンアップしました(実際、私にとっては奇妙です、特に_.map()または_.extend() )、不要なビューを削除し、 Emberの命名規則を尊重し ます。

しかし、ある意味では、それは私にとって完全にきれいではありません。

<h1>Skills</h1>

<script type="text/x-handlebars" data-template-name="skill-list">
    <table class="datagrid" style="width: 100%">
        <thead>
        <tr>
            <td colspan="5" class="controls">
                Search <input type="text" value="" class="search_field"/>
            </td>
        </tr>
        <tr>
            <th class="id_sort">ID</th>
            <th class="name_sort">Name</th>
            <th class="basis_sort">Basis</th>
            <th class="type_sort">Type </th>
            <th>&nbsp;</th>
        </tr>
        </thead>
        <tbody>
          {{#each Skills.skills}}
          <tr>
            <td>
                {{id}}
            </td>
            <td>{{name}}</td>
            <td>{{basis}}</td>
            <td>{{type}}</td>
            <td class="control">
                <button class="edit"><span class="icon"></span> Edit</button>
            </td>
          </tr>
          {{/each }}
        </tbody>
        <tfoot>
        <tr>
            <th class="id_sort">ID</th>
            <th class="name_sort">Name</th>
            <th class="basis_sort">Basis</th>
            <th class="type_sort">Type </th>
            <th>&nbsp;</th>
        </tr>
        <tr>
            <td colspan="5" class="controls">
                <button class="add" {{action "add_skill"}} >Add Skill
                </button>
            </td>
        </tr>
        </tfoot>
    </table>
</script>

<script type="text/x-handlebars" >
    {{view Skills.SkillsView}}
</script>

<script language="javascript">

    var SKILLS;

    $(function () {
        Skills = Ember.Application.create({

            Skill: Ember.Object.extend({
                id: 0,
                name: '',
                basis: ''
            }),

            skills: [],

            add_skill: function(){
                console.log("adding a new skill");
            }

        });

        Skills.skills = [
            {name:"throwing", basis:"speed", type: 'skill', id:0},
            {name:"spech", basis:"will", type: 'skill', id:1}
        ].map(function(s){ return Skills.Skill.create(s); });

        Skills.SkillsView = Ember.View.extend({
            templateName:'skill-list',
            add_skill: function(){
                Skills.add_skill();
            }
        });

    })
</script>

</ p>

于 2012-08-01T10:27:55.577 に答える