由于 聚合物体 已被删除,我们需要使用自动绑定模板在 PolymerElement 之外使用聚合物绑定功能:
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample app</title>
<script src="packages/web_components/platform.js"></script>
<script src="packages/web_components/dart_support.js"></script>
<link rel="import" href="packages/polymer/polymer.html">
<script src="packages/browser/dart.js"></script>
</head>
<body>
<template is="auto-binding-dart">
<div>Say something: <input value="{{value}}"></div>
<div>You said: {{value}}</div>
<button id="mybutton" on-tap="{{buttonTap}}">Tap me!</button>
</template>
<script type="application/dart">
import 'dart:html';
import 'package:polymer/polymer.dart';
import 'package:template_binding/template_binding.dart';
main() {
initPolymer().run(() {
Polymer.onReady.then((_) {
var template = document.querySelector('template');
templateBind(template).model = new MyModel();
});
});
}
class MyModel extends Observable {
//$['mybutton'] wont works there
@observable String value = 'something';
buttonTap() => print('tap!');
}
</script>
</body>
</html>
不幸的是,整个模型现在扩展了 Observable ,每个绑定似乎都有效,but the PolymerElement array selector $['foo']不能再使用了......
有没有简单的方法将这个$ ['id']选择器实现到Observable模型中?
答案 0 :(得分:1)
我建议使用普通的Polymer元素而不是auto-binding-dart
那么你不必关心差异,你不需要主要的&#39;。
我总是启动一个Polymer项目,其中<app-element>
Polymer元素充当main()
并且是整个应用程序的容器。
我也建议不要使用内联代码 据我所知,它有一些限制,特别是不支持调试(可能已经修复,我不知道因为我从不使用它)。
要使$
工作,您需要一个小而简单的解决方法;
import 'dart:html';
import 'package:polymer/polymer.dart';
import 'package:template_binding/template_binding.dart';
Map<String, dynamic> $; // we define our own '$'
main() {
initPolymer().run(() {
Polymer.onReady.then((_) {
var template = document.querySelector('template') as Polymer;
$ = template.$; // we assign template.$ to our own '$' so we can omit the 'template' part
templateBind(template).model = new MyModel();
});
});
}
class MyModel extends Observable {
//$['mybutton'] wont work there - it can't because this is outside of a method
@observable String value = 'something';
buttonTap() {
print($['mybutton'].id); // here it works
print('tap!');
}
}