gpt4 book ai didi

javascript - ng-init 没有按预期工作

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

我正在尝试根据网格的列值初始化模型值。我有这个对象,我想使用 ng-init 初始化它。但当我看到ng 检查器,模型值始终未定义。 AID 是剑道网格中的动态值。

   <input type="checkbox" ng-init=""obj['#: AID#']='Y'"" ng-model=""obj['#: AID#']"">

Controller :

 var testController = function($scope){
$scope.obj= {};
}

这就是最终标记的样子

<input type="checkbox" ng-init="ps['test']=('Y' == 'N')" ng-model="ps['test']" class="ng-pristine ng-valid ng-touched">

我预计模型 ps['test'] 为假。但它始终是未定义的。请帮忙

最佳答案

尝试将值设置为 true 或 false,而不是 Y 或 N。如下所示

<input type="checkbox" ng-init="obj['m']=true" ng-model="obj['m']">

关于javascript - ng-init 没有按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29251815/

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