4

カスタム要素を使用していない場合、モデルをテーブルにバインドできません。カスタム要素は正常に動作しますが、カスタム コンポーネントを作成せずにモデルを手動でバインドしようとすると、データが表示されません。何か案は?

custom_table.html

<!DOCTYPE html>
<html>
  <body>    
    <polymer-element name="custom-table" extends="div" apply-author-styles>            
      <template>      
        <table>
          <tbody>
            <tr template repeat="{{people}}">
              <td>{{firstName}}</td>
              <td>{{lastName}}</td>
            </tr>
          </tbody>
        </table>
      </template>      
      <script type="application/dart" src="custom_table.dart"></script>
    </polymer-element>   
  </body>
</html>

custom_table.dart

import 'package:polymer/polymer.dart';

class Person  {
  String firstName;
  String lastName;        
  Person(this.firstName, this.lastName);
}

@CustomTag('custom-table')
class CustomTable extends PolymerElement with ObservableMixin {
  List people = [new Person('Bob', 'Smith'), new Person('Alice', 'Johnson')];
}

カスタム要素のバージョンがありません:

Polymer_test.html

<!DOCTYPE html>
<head>        
    <script src="packages/polymer/boot.js"></script>
</head>
<html>
  <head>
    <meta charset="utf-8">
    <title>Polymer test</title>
    <link rel="stylesheet" href="polymer_test.css">
  </head>
  <body>   
   <h1> Table test </h1>
    <template id="tableTemplate" repeat>
      <table>       
        <tbody>
          <tr template repeat="{{ people }}">
            <td>{{firstName}}</td>
            <td>{{lastName}}</td>
          <tr>            
        </tbody>  
      </table>
    </template>    
    <script type="application/dart" src="polymer_test.dart"></script>    
  </body>
</html>

Polymer_test.dart

import 'dart:html';
import 'package:polymer/polymer.dart';
import 'package:fancy_syntax/syntax.dart';

class Person {
  String firstName;
  String lastName;        
  Person(this.firstName, this.lastName);
}

class Message extends Object with ObservableMixin {  
  List<Person> people = toObservable([new Person('Bob', 'Smith'), new Person('Alice', 'Johnson')]);
}

main() {
  var msgModel = new Message();  
  TemplateElement template = query('#tableTemplate');
  template.bindingDelegate = new FancySyntax();
  template.model = msgModel;
}
4

3 に答える 3

1

これをメインに追加すると役立ちますか?

void main() {
  initPolymer([], () {
    // put existing main code in here
  });
}

Polymer/boot.js でこれを行う必要がありますが、ページに少なくとも 1 つの Polymer 要素が含まれていない限り (これはバグです)、機能しないと思います。

<polymer-element>または、 HTMLにダミーを追加することもできます。それは問題を回避します。

于 2013-08-14T19:15:10.340 に答える
0

試してみませんか

templateBind(query('#tableTemplate'))
    ..bindingDelegate = new FancySyntax()
    ..model = msgModel;

http://api.dartlang.org/docs/releases/latest/template_binding.html#templateBindを参照してください

于 2013-11-07T05:41:18.343 に答える