gpt4 book ai didi

dart - 使用 polymer.dart 在 dart 中进行双向数据绑定(bind)的示例

转载 作者:行者123 更新时间:2023-12-03 02:45:14 25 4
gpt4 key购买 nike

我看到了使用 {{my_var}} 格式进行数据绑定(bind)的一种方式的示例,但是,我没有看到将更改从 HTML 端绑定(bind)回 dart 对象的方法。例如一个输入框的文本变化。

最佳答案

Seth Ladd's GitHub space 上有几个例子.

这是文本输入绑定(bind)的具体示例:

<polymer-element name="my-example">
<template>
<div>
Type something: <input type="text" value="{{message}}">
</div>
<div>
You typed {{message}}
</div>
</template>
<script type="application/dart" src="my_example.dart"></script>
</polymer-element>



import 'package:polymer/polymer.dart';

@CustomTag('my-example')
class MyExample extends PolymerElement with ObservableMixin {
@observable String message;
}

关于dart - 使用 polymer.dart 在 dart 中进行双向数据绑定(bind)的示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19461863/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com