이번에는 nodejs에서 http 모듈을 사용하여 업로드 이미지 인터페이스 테스트 클라이언트를 작성하는 방법을 보여드리겠습니다. nodejs가 http 모듈을 사용하여 업로드 이미지 인터페이스 테스트 클라이언트를 작성하는 주의사항은 무엇입니까? , 살펴 보겠습니다.
간단한 업로드 테스트 서버 구축
예: Python 플라스크를 사용하여 간단한 서버 작성
from flask import Flask, url_for, request,redirect,send_from_directoryimport os app = Flask(name) app.config['UPLOAD_FOLDER'] = 'uploads/' # 保存文件位置ALLOWED_EXTENSIONS = set(['txt', 'pdf', 'png', 'jpg', 'jpeg', 'gif'])@app.route('/uploads/<filename>')def uploaded_file(filename): return send_from_directory(app.config['UPLOAD_FOLDER'], filename)@app.route('/', methods=['GET', 'POST'])def upload_file(): if request.method == 'POST': file = request.files['file'] if file : file.save(os.path.join(app.config['UPLOAD_FOLDER'], file.filename)) return redirect(url_for('uploaded_file', filename=file.filename)) return ''' <html><head><title>上传测试</title> </head><body><h1>上传测试</h1> <script> function upl(){ var form = new FormData(); form.append("file", document.getElementsByName("file")[0].files[0]); var oReq = new XMLHttpRequest(); oReq.open("POST", "/"); oReq.send(form); } </script> <form action="" method="post" enctype="multipart/form-data"> <p><input type="file" name="file"> <input type="submit" value="表单提交"> </p></form> <input type="button" value="ajax提交" onclick="upl()"> </body> </html> '''with app.test_request_context(): # 输出url passif name == 'main': # app.debug = True app.run()
2. 업로드 헤더 로고를 관찰하세요
서버를 실행한 후 브라우저를 열어 주소에 액세스하고, 콘솔을 열고, 파일을 업로드하고 관찰하세요
3. nodejs에서 업로드 테스트 클라이언트 작성
var http = require('http');var querystring = require('querystring');var fs = require('fs');var post_data = { };//post提交数据var content = querystring.stringify(post_data);#将对象转换成字符串,字符串里多个参数将用 ‘&' 分隔,将用 ‘=' 赋值var boundaryKey = new Date().getTime();//创建随机切割标识字 你可以百度 'multipart form-data boundary'了解//var boundaryKey =Math.random().toString(16); var options = { hostname: '127.0.0.1', port: 5000, path: '/', method: 'POST', headers: { // 'Accept': '*/*', // 'Accept-Encoding': 'gzip, deflate', // 'Connection': 'keep-alive', 'Content-Type':'multipart/form-data; boundary=----'+boundaryKey,//文件上传标识与切割标识 // 'Host':'127.0.0.1:5000', // 'Origin':'http://127.0.0.1:5000', // 'Referer':'http://127.0.0.1:5000/', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36' } };var req = http.request(options, function (res) { res.setEncoding('utf8'); console.log('STATUS: ' + res.statusCode); console.log('HEADERS: ' + JSON.stringify(res.headers)); res.on('data', function (chunk) { console.log('BODY: ' + chunk); }); res.on('end', function () { console.log('res end'); }); });var payload ='\r\n------'+boundaryKey+'\r\n' + 'Content-Disposition: form-data; name="file"; filename="test.png"\r\n' + 'Content-Type: image/png\r\n\r\n';var enddata = '\r\n------'+boundaryKey+'--'; req.setHeader('Content-Length', Buffer.byteLength(payload) + Buffer.byteLength(enddata) + fs.statSync("./test.png").size); req.write(payload);var fileStream = fs.createReadStream("./test.png", { bufferSize: 4 * 1024 }); fileStream.pipe(req, { end: false }); fileStream.on('end', function () { req.end(enddata); }); req.on('error', function (e) { console.log('problem with request: ' + e.message); }); req.write(content);// req.end();
작성하는 또 다른 방법이 있습니다:
var http = require('http');var querystring = require('querystring');var fs = require('fs');var boundaryKey = new Date().getTime()//Math.random().toString(16); //创建随机切割标识字var options = { hostname: '127.0.0.1', port: 5000, path: '/', method: 'POST', headers: { // 'Accept': '*/*', // 'Accept-Encoding': 'gzip, deflate', // 'Connection': 'keep-alive', 'Content-Type': 'multipart/form-data; boundary=----' + boundaryKey, // 'Host':'127.0.0.1:5000', // 'Origin':'http://127.0.0.1:5000', // 'Referer':'http://127.0.0.1:5000/', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36' } };var req = http.request(options, function (res) { res.setEncoding('utf8'); console.log('STATUS: ' + res.statusCode); console.log('HEADERS: ' + JSON.stringify(res.headers)); res.on('data', function (chunk) { console.log('BODY: ' + chunk); }); res.on('end', function () { console.log('res end'); }); });var payload = '\r\n------' + boundaryKey + '\r\n' + 'Content-Disposition: form-data; name="file"; filename="test.png"\r\n' + 'Content-Type: image/png\r\n\r\n';var enddata = '\r\n------' + boundaryKey + '--';var fileStream=fs.readFileSync("./test.png"); req.setHeader('Content-Length', Buffer.byteLength(payload) + Buffer.byteLength(enddata) + fs.statSync("./test.png").size);console.log(payload); req.write(payload);console.log(fileStream); req.write(fileStream);console.log(enddata); req.end(enddata); req.on('error', function (e) { console.log('problem with request: ' + e.message); });
더 흥미로운 정보를 보려면 이 기사의 사례를 읽은 후 방법을 마스터했다고 믿습니다. , PHP 중국어 웹사이트의 다른 관련 기사도 주목해주세요!
관련 읽기:
Golang+Nodejs의 프런트엔드 개발과 백엔드 개발 분리에 대한 자세한 설명
위 내용은 nodejs가 http 모듈을 사용하여 업로드 이미지 인터페이스 테스트 클라이언트를 작성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!