gpt4 book ai didi

attributes - 在 AngularDart 中包含 mustache 指令时,NgAttr 值最初为空

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

第3章AngularDart tutorial定义了 rating @NgComponent (见下面的摘录),用于 index.html像这样:

<rating max-rating="5" rating="ctrl.selectedRecipe.rating"></rating>

在该章中还建议 max-rating @NgAttr可以通过 {{...}} 设置像这样:

<rating max-rating="{{ctrl.max}}" rating="ctrl.selectedRecipe.rating"></rating>

RecipeController我简单地宣布:

 int max = 5;

如果我添加 print("maxRating('$value')")在组件的 maxRating() 顶部setter body(见下文),然后在运行应用程序时,我得到以下输出:
maxRating('')  // printed 7 times
maxRating('5') // printed 7 times

问题:为什么值最初是空的? 我认为这是因为插值尚未完成, 但是为什么在值“准备好”之前调用setter?
RatingComponent 的摘录类定义:

@NgComponent(
selector: 'rating', ...
publishAs: 'cmp'
)
class RatingComponent {
...

@NgTwoWay('rating')
int rating;

@NgAttr('max-rating')
set maxRating(String value) {
var count = value == null ? 5 : int.parse(value);
stars = new List.generate(count, (i) => i+1);
}

最佳答案

据我所知,angular dart 非常渴望应用值。一旦 angular 运行它就开始应用值,我想提供一种响应的感觉。
我也被这一点困扰,不得不为尚未初始化的值编写多个解决方法。

绑定(bind)机制调用 setter 和 getter 以稳定值,因为某些值可能相互依赖,并且机制通过多次设置和获取值来“蛮力”这一点(默认情况下为 7,IIRC)。

关于attributes - 在 AngularDart 中包含 mustache 指令时,NgAttr 值最初为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21650758/

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