gpt4 book ai didi

javascript - 无法将 span 元素附加到 Angularjs/Jquery 中的数组对象

转载 作者:行者123 更新时间:2023-11-29 15:31:48 25 4
gpt4 key购买 nike

我正在努力使用 Angularjs 中的 watcher 将数组对象与跨度值列表绑定(bind)。

它部分工作,当我输入 span 元素时,会自动为每个 span 创建一个数组,当我删除任何 span 元素时 -> 现有数组中的相应行将被删除,所有其他行将正确重新对齐(不会打扰值和名称)。

问题是当我删除一个 span 元素并使用我的输入文本重新输入它时,它没有被添加到我的数组中。因此,在删除一个 span 元素并输入任何新元素后 - 这些新值不会附加到我的数组中。

DemoCode fiddle link

我的代码中缺少什么?

如何在不影响剩余行的值(数组的名称和值)的情况下将重新插入的跨度附加到现有数组对象?

请注意,值会根据图表随时更改。

这是我使用的代码:

<script>
function rdCtrl($scope) {
$scope.dataset_v1 = {};
$scope.dataset_wc = {};
$scope.$watch('dataset_wc', function (newVal) {
//alert('columns changed :: ' + JSON.stringify($scope.dataset_wc, null, 2));
$('#status').html(JSON.stringify($scope.dataset_wc));

}, true);

$(function () {
$('#tags input').on('focusout', function () {
var txt = this.value.replace(/[^a-zA-Z0-9\+\-\.\#]/g, ''); // allowed characters
if (txt) {
//alert(txt);
$(this).before('<span class="tag">' + txt.toLowerCase() + '</span>');
var div = $("#tags");
var spans = div.find("span");
spans.each(function (i, elem) { // loop over each spans
$scope.dataset_v1["d" + i] = { // add the key for each object results in "d0, d1..n"
id: i, // gives the id as "0,1,2.....n"
name: $(elem).text(), // push the text of the span in the loop
value: 3
}
});
$("#assign").click();
}
this.value = "";
}).on('keyup', function (e) {
// if: comma,enter (delimit more keyCodes with | pipe)
if (/(188|13)/.test(e.which)) $(this).focusout();
if ($('#tags span').length == 7) {
document.getElementById('inptags').style.display = 'none';
}
});

$('#tags').on('click', '.tag', function () {
var tagrm = this.innerHTML;
sk1 = $scope.dataset_wc;
removeparent(sk1);
filter($scope.dataset_v1, tagrm, 0);
$(this).remove();
document.getElementById('inptags').style.display = 'block';
$("#assign").click();
});
});

$scope.assign = function () {
$scope.dataset_wc = $scope.dataset_v1;
};

function filter(arr, m, i) {
if (i < arr.length) {
if (arr[i].name === m) {
arr.splice(i, 1);
arr.forEach(function (val, index) {
val.id = index
});
return arr
} else {
return filter(arr, m, i + 1)
}
} else {
return m + " not found in array"
}
}

function removeparent(d1)
{
dataset = d1;
d_sk = [];
Object.keys(dataset).forEach(function (key) {
// Get the value from the object
var value = dataset[key].value;
d_sk.push(dataset[key]);
});
$scope.dataset_v1 = d_sk;
}
}
</script>

我再试一次,检查我的运气......我尝试在追加时使用另一个对象来跟踪数据,但发现很难。

最佳答案

您应该使用范围作为桥接完整数组和标记的方法。使用 ng-repeat 显示标签,并使用输入模型将其推送到显示标签的主数组中。我在这里为您开始:http://jsfiddle.net/d5ah88mh/9/

function rdCtrl($scope){
$scope.dataset = [];
$scope.inputVal = "";
$scope.removeData = function(index){
$scope.dataset.splice(index, 1);
redoIndexes($scope.dataset);
}
$scope.addToData = function(){
$scope.dataset.push(
{"id": $scope.dataset.length+1,
"name": $scope.inputVal,
"value": 3}
);
$scope.inputVal = "";
redoIndexes($scope.dataset);
}
function redoIndexes(dataset){
for(i=0; i<dataset.length; i++){
$scope.dataset[i].id = i;
}
}
}



<div ng-app>
<div ng-controller="rdCtrl">
<div id="tags" style="border:none;width:370px;margin-left:300px;">
<span class="tag" style="padding:10px;background-color:#808080;margin-left:10px;margin-right:10px;" ng-repeat="data in dataset" id="4" ng-click="removeData($index)">{{data.name}}</span>
<div>
<input type="text" style="margin-left:-5px;" id="inptags" value="" placeholder="Add ur 5 main categories (enter ,)" ng-model="inputVal" />
<button type="submit" ng-click="addToData()">Submit</button>
<img src="../../../static/app/img/accept.png" ng-click="assign()" id="assign" style="cursor:pointer;display:none" />


</div>
</div>

<div id="status" style="margin-top:100px;"></div>
</div>
</div>

关于javascript - 无法将 span 元素附加到 Angularjs/Jquery 中的数组对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34151868/

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