gpt4 book ai didi

javascript - AngularJS 指令运行时模板更改

转载 作者:行者123 更新时间:2023-11-29 14:48:09 26 4
gpt4 key购买 nike

我一直在尝试制作一个输入指令,它允许不同的输入类型(例如间隔(最小-最大)、日期时间、数字、文本...)。每当用户更改数据类型时,相应的输入都会更改其模板,这一点非常重要。我还需要能够在页面上进行多个输入(请参阅 PLUNKR 以更好地理解)。

经过大量的反复试验和研究,我得出的结论是我需要观察属性(great-input),根据所选输入类型的值替换我的输入模板,然后编译它。但是我无法在编译函数中执行此操作,而且我的 watch 在链接函数中无法正常工作(我得到的是 t1、t2)。

因此,我需要做的是,在更改 select(type) 中的值时,更改输入模板(为简单起见,我只是对不同的输入类型进行了颜色编码)。

$scope.$watch('greatInput', function (newVal) {
console.log(newVal);
html = getTemplate(newVal);
$elem.html('').append($compile(html)($scope));
});

这几乎是应该完成工作的函数(根据它的实现位置进行了一些更改),但我找不到合适的位置。

完整代码: http://plnkr.co/edit/BCuiqg?p=preview

最佳答案

到目前为止,最简单的方法是在指令模板中使用 ng-if 并在作用域上绑定(bind)输入类型:

.directive("greatInput", function(){
return {
template: '<input ng-if="isStr()" type="txt" ng-model="greatInputModel">\
<input ng-if="isInt()" type="number" ng-model="greatInputModel">\
<input ng-if="isDbl()" type="number" ng-model="greatInputModel">',
scope: {
greatInputModel: "=",
greatInputType: "@",
// etc...
},
link: function($scope){
$scope.isStr = function(){
return $scope.greatInputType === "5" || someotherCondition();
}
// same for $scope.isInt and $scope.isDbl
}
}
});

关于javascript - AngularJS 指令运行时模板更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29940890/

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