gpt4 book ai didi

javascript - AngularJS 从参数动态获取 ng-model 名称

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

编辑

如何设置<input ng-model="this['newPlayer']['personal_info']['first_name']">['newPlayer']['personal_info']['first_name']动态地从变量?

类似这样的:<input ng-model="this[variable]">

最佳答案

您不必从属性中获取它,只需将其添加到您的指令中 require: 'ngModel'像这样

app.directive("textInput", () => {
return {
templateUrl: "/text-input.html",
require: 'ngModel'
scope: true,
link: function($scope, $element, $attrs, ngModel) {
angular.element($element).append($scope[$attrs.myModel]);
}
}
});

并且链接函数中的每个 textInput 实例都有不同的 ngModel

关于javascript - AngularJS 从参数动态获取 ng-model 名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52889056/

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