“Wie man Array in JSON Array zusammenfasst” Code-Antworten

Wie man Array in JSON Array zusammenfasst

//ADDING NEW COMMENTS
//add new comment within project
$scope.updatecomments = undefined;
$scope.addnewcomment = function() {
    $scope.updatecomments = $scope.updatecomments || $scope.projectDetails.Comments;
    $scope.updatecomments.push({
        "Author": "test",
        "Text": $scope.NewComment
    })
}
SAMER SAEID

Wie man Array in JSON Array zusammenfasst

//ADDING NEW COMMENTS
//add new comment within project
$scope.addnewcomment = function() {
  $scope.projectDetails.Comments.push({
        "Author": "test",
        "Text": $scope.NewComment
    })
}
SAMER SAEID

Wie man Array in JSON Array zusammenfasst

$scope.combineComments = function (){
    var jsonStr = $scope.projectDetails.Comments;
    var obj = JSON.parse(jsonStr);
          
    obj.push({"Author":"Test","Text":$scope.NewComment});
          jsonStr = JSON.stringify(obj);
    }
}
SAMER SAEID

Ähnliche Antworten wie “Wie man Array in JSON Array zusammenfasst”

Fragen ähnlich wie “Wie man Array in JSON Array zusammenfasst”

Weitere verwandte Antworten zu “Wie man Array in JSON Array zusammenfasst” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen