您好我正在使用角度js。我尝试从我的json中删除数据但是当我刷新页面时,json文件仍然没有改变。我删除的数据仍在那里。
我把我的json放在myjson.com
上[
{
"id":1,
"name": "sarah",
]
},
{
"id":2,
"name": "tommy"
]
}
{
"id":2,
"name": "rian"
]
}
]
这是我删除数据的代码:
$scope.deleteItem =function(experience){
var index = $scope.experiences.indexOf(experience);
alert("Deleting DATA: "+ index);
$scope.experiences.splice(index,1);
};
我需要编写php或其他代码吗?我以为我可以用angularjs中的代码删除文件。我还是新来的,所以请你告诉我。