我在服务器端使用NodeJ,但我需要在文本文件中重写(擦除内容并再次写入)或将其发送到同一网络中的RaspberryPi而不使用ftp,web服务器或其他在te Raspberry。
我一直在阅读关于NodeJs的'request'
,但我想我需要在Raspberry中安装一个类似于Web服务器的东西来对Raspberry中的某个URL进行'post'
。
function uploadFile() {
var formData = {
// Pass a simple key-value pair
my_field: 'my_value',
// Pass data via Buffers
my_buffer: new Buffer([1, 2, 3]),
// Pass data via Streams
my_file: fs.createReadStream(__dirname + '/unicycle.jpg'),
// Pass multiple values /w an Array
attachments: [
fs.createReadStream(__dirname + 'porton/json.txt')
],
// Pass optional meta-data with an 'options' object with style: {value: DATA, options: OPTIONS}
// Use case: for some types of streams, you'll need to provide "file"-related information manually.
// See the `form-data` README for more information about options: https://github.com/felixge/node-form-data
custom_file: {
value: fs.createReadStream('/dev/urandom'),
options: {
filename: 'topsecret.jpg',
contentType: 'image/jpg'
}
}
};
request.post({ url: '<RaspberryStaticIP>/route/message.txt', formData: formData }, function optionalCallback(err, httpResponse, body) {
if (err) {
return console.error('upload failed:', err);
}
console.log('Upload successful! Server responded with:', body);
});
}
https://github.com/request/request#multipartform-data-multipart-form-uploads
使用MultiPart Upload
进行curl
curl('127.0.0.1/upload.php', {
MULTIPART: [
{name: 'file', file: '/file/path', type: 'text/html'},
{name: 'sumbit', contents: 'send'}
]
}, function(e) {
console.log(e);
console.log(this.body);
this.close()
});
https://www.npmjs.com/package/node-curl#multipart-upload
或者,是否可以使用'fs'
但不是本地的?
fs.writeFile('<RaspberryStaticIP>/route/message.txt', '123', function (err) {
if (err) throw err;
console.log('It\'s saved!');
});
是否有其他方法只使用NodeJs(及其任何实现)或PHP?如果不可能按照我说的方式,最好的方式,通过FTP,Raspberry中的WebServer或任何推荐来做到这一点。
答案 0 :(得分:1)
有多种方法可以将文件放在服务器上,我假设您在本地网络上执行此操作(因为您使用的是RPi),并且完全没有需要在提示PHP等时使用NodeJS。以下是其中一个使用shell脚本和Here文档:
答案 1 :(得分:1)