0

我是 NodeJS 环境的新手

  • 我正在尝试在 android 客户端中使用存储在服务器中的图像
  • 通常我们使用在服务器中为 data(Non,image) 生成一个 JSON JSON.stringify

我成功地从 MySQL 表中检索数据并使用下面的程序转换为 JSON

var http = require('http');
var mysql = require('mysql');
var connection = mysql.createConnection({
    host: 'localhost',
    user: 'root',
    password: 'root',
    database: 'test_programs_database'
});

http.createServer(function (request, response) 
{ 
        console.log('Creating the http server');
        connection.query('SELECT id, content FROM test WHERE id IN (1, 2)', function(err, rows, fields)
        {
                console.log('Connection result error '+err);
                console.log('no of records is '+rows.length);
                response.writeHead(200, { 'Content-Type': 'application/json'});
                response.end(JSON.stringify(rows));
                //response.end();
        }); 

}).listen(8084);

如何使用 NodeJS 处理存储在服务器数据库中的图像? 任何有助于我理解这点的学习材料的好链接都会有所帮助

4

1 回答 1

1

一种常见的方法是在 JSON 有效负载中返回图像 URL。如果图像数据本身存储在数据库中,则为返回图像数据的 API 创建另一个端点(例如http://www.example.com/images/my_image.jpg:)

仅向 Android 客户端发送图像 URL 而不是图像数据本身也将允许您在本地缓存图像

于 2013-08-14T08:03:32.440 回答