从html输入标记(前端(angularJs+Html))通过node.js编辑Json文件,可以通过以下步骤实现:
以下是一个示例代码:
前端HTML代码:
<!DOCTYPE html>
<html>
<head>
<title>编辑JSON文件</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9/angular.min.js"></script>
</head>
<body ng-app="myApp" ng-controller="myCtrl">
<input type="text" ng-model="jsonData" placeholder="输入JSON数据">
<button ng-click="editJson()">提交</button>
</body>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$scope.editJson = function() {
$http.post('/editJson', {data: $scope.jsonData})
.then(function(response) {
alert('JSON文件已编辑');
}, function(error) {
alert('编辑JSON文件时出错');
});
};
});
</script>
</html>
Node.js后端代码:
const express = require('express');
const bodyParser = require('body-parser');
const fs = require('fs');
const app = express();
app.use(bodyParser.json());
app.post('/editJson', function(req, res) {
const jsonData = req.body.data;
// 读取JSON文件
fs.readFile('data.json', 'utf8', function(err, data) {
if (err) {
res.status(500).send('读取JSON文件时出错');
} else {
let json = JSON.parse(data);
// 编辑JSON数据
json = { ...json, ...jsonData };
// 将编辑后的JSON数据写入文件
fs.writeFile('data.json', JSON.stringify(json), 'utf8', function(err) {
if (err) {
res.status(500).send('写入JSON文件时出错');
} else {
res.send('JSON文件已编辑');
}
});
}
});
});
app.listen(3000, function() {
console.log('服务器已启动,监听端口3000');
});
在上述示例代码中,前端页面使用AngularJS进行数据绑定和发送POST请求,后端使用Node.js创建一个简单的Express服务器,接收前端发送的POST请求,并通过fs模块读取和编辑JSON文件。注意,这只是一个简单的示例,实际应用中可能需要进行更多的错误处理和安全性考虑。
推荐的腾讯云相关产品:腾讯云云服务器(CVM)和对象存储(COS)。
领取专属 10元无门槛券
手把手带您无忧上云