0
如何上傳一個字符串作爲文件,並通過http post請求使用node.js
?上傳一個字符串作爲文件
這裏是我的嘗試:
var unirest = require('unirest');
unirest.post('127.0.0.1/upload')
.headers({'Content-Type': 'multipart/form-data'})
.attach('file', 'test.txt', 'some text in file') // Attachment
.end(function (response) {
console.log(response.body);
});
但沒有任何反應