gpt4 book ai didi

javascript - 在指令中使用 templateUrl 时,element.find() 不起作用

转载 作者:行者123 更新时间:2023-11-28 01:17:26 25 4
gpt4 key购买 nike

我试图通过表单上的自定义指令将焦点设置在输入字段上。在指令中使用模板属性时,这可以正常工作。但是,当我通过 templateUrl 将模板移动到单独的 html 文件中时,element.find() 不再找到我的输入字段:

代码如下:

<!DOCTYPE html>
<html ng-app="plunker">

<head>
<meta charset="utf-8" />
<title>AngularJS Plunker</title>
<script>document.write('<base href="' + document.location + '" />');</script>
<link rel="stylesheet" href="style.css" />
<script data-require="angular.js@1.2.x" src="https://code.angularjs.org/1.2.16/angular.js" data-semver="1.2.16"></script>
<script src="app.js"></script>
</head>

<body ng-controller="MainCtrl">
<form get-input-by-id="input2">
<my-input id="input1"></my-input>
<my-input id="input2"></my-input>
</form>
</body>

</html>

js:

var app = angular.module('plunker', []);

app.controller('MainCtrl', function($scope) {
$scope.name = 'World';
});

app.directive('getInputById', function() {
return {
link: function (scope, element, attrs) {
//console.log(element);
var toFocus = element.find('input');
console.log(toFocus);
toFocus[1].focus();
}
}
});

app.directive('myInput', function() {
return {
restrict: 'E',
scope: {
id: "@id",
},
// this is not working
templateUrl: 'template.html',
// this is working
//template: '<div><input id="{{id}}"/></div>',
link: function (scope, element, attrs) {
}
}
});

模板:

<div>
<input id="{{id}}"/>
</div>

我添加了工作和不工作的笨蛋:

This plunker is working .

This plunker is not working .

最佳答案

问题是,子指令在下载模板之前不会呈现,因此父级的链接函数找不到任何 input 元素(请阅读评论中的其他问题)。

一种双向工作的选项是让子指令(无论何时呈现)询问父指令是否应该聚焦。

app.directive('getInputById', function() {
return {
scope: {
getInputById: '@'
},
controller: function($scope) {
this.isFocused = function(id) {
return $scope.getInputById === id;
}
}
}
});

app.directive('myInput', function() {
return {
restrict: 'E',
require: '?^getInputById',
scope: {
id: "@id",
},
templateUrl: 'template.html',
link: function (scope, element, attrs, ctrl) {
if (ctrl && ctrl.isFocused(scope.id)) {
var input = element.find('input')
input[0].focus();
}
}
}
});

这样,父指令就可以更加通用,并且不完全限于 input 元素。每个不同的“可聚焦”控件都会询问父级并实现自己的焦点。

Working plunker

关于javascript - 在指令中使用 templateUrl 时,element.find() 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23674536/

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