gpt4 book ai didi

javascript - AngularJS 指令中的两种数据绑定(bind)方式

转载 作者:IT王子 更新时间:2023-10-29 03:22:05 25 4
gpt4 key购买 nike

我一直在尝试定义指令,以便我可以在表单中显示不同的“小部件”,具体取决于存储在数据库中的字段类型及其参数。我需要对不同类型的场景使用react,因此需要指令来处理布局。

在尝试一些示例时,我想出了一个*有点*有效的代码:

HTML

<input type="text" ng-model="myModel" style="width: 90%"/>  
<div class="zippy" zippy-title="myModel"></div>

指令

myApp.directive('zippy', function(){
return {
restrict: 'C',
// This HTML will replace the zippy directive.
transclude: true,
scope: { title:'=zippyTitle' },
template: '<input type="text" value="{{title}}"style="width: 90%"/>',
// The linking function will add behavior to the template
link: function(scope, element, attrs) {
// Title element
element.bind('blur keyup change', function() {
scope.$apply(read);
});

var input = element.children();


function read() {
scope.title = input.val();
}
}
}
});

这似乎可行(尽管明显比 *proper* angularJS 变量绑定(bind)慢)但我认为必须有更好的方法来做到这一点。任何人都可以阐明这件事吗?

最佳答案

我不知道你为什么要手动触发 $apply 方法,因为你实际上不需要它。

我编辑了您在 Angular 页面中使用的示例并包含了输入。它对我有用:http://jsfiddle.net/6HcGS/2/

HTML

<div ng-app="zippyModule">
<div ng-controller="Ctrl3">
Title: <input ng-model="title">
<hr>
<div class="zippy" zippy-title="title"></div>
</div>
</div>​

JS

function Ctrl3($scope) {
$scope.title = 'Lorem Ipsum';
}

angular.module('zippyModule', [])
.directive('zippy', function(){
return {
restrict: 'C',
replace: true,
transclude: true,
scope: { title:'=zippyTitle' },
template: '<input type="text" value="{{title}}"style="width: 90%"/>',
link: function(scope, element, attrs) {
// Your controller
}
}
});

更新maxisam 是对的,您必须使用 ng-model 而不是像这样将变量与值绑定(bind):

<input type="text" ng-model="title" style="width: 90%"/>

这是工作版本:http://jsfiddle.net/6HcGS/3/

关于javascript - AngularJS 指令中的两种数据绑定(bind)方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13294507/

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