您好我已经开始使用Angular为我的网站制作一个评论模块,我现在一直在坚持:更新包含评论的JSON文件。
这是JSON:
[
{
"page": "dashboard",
"text": "first comment",
"author": "vince"
},
{
"page": "dashboard",
"text": "second comment",
"author": "vince"
},
{
"page": "angular_crawling",
"text": "second comment",
"author": "vince"
}
]
为$ scope数据添加注释的函数,但它没有更改JSON文件
$scope.addcommentaire = function () {
console.log(this.textMessage);
console.log(this.auteur);
console.log(document.getElementById('hiddenpage').value);
var onecomment = {page: document.getElementById('hiddenpage').value, text: this.textMessage, author: this.auteur};
$scope.commentaires.unshift(onecomment);
};
如何使用angular或javascript在JSON文件中添加数据?有可能吗?