Node.js - 실시간 위치 추적 (2)

· 10년 전 · 1360

이제 사용자 위치를 저장할 "Location" 데이터베이스를 생성합니다.

 

mysql> CREATE DATABASE Location;

 

mysql> USE Location; 

 

mysql> CREATE TABLE locations ( 

-> id INT AUTO_INCREMENT PRIMARY KEY,

-> name VARCHAR(50) NOT NULL,

-> latitude DOUBLE NOT NULL,

-> longitude DOUBLE NOT NULL,

-> date DATETIME NOT NULL);

 

 

서버 코드 "app.js" 파일 코드를 작성합니다.

 

// 모듈을 추출합니다.

var fs = require('fs');

var http = require('http');

var express = require('express');

 

// 데이터베이스와 연결합니다.

var client = require('mysql').createConnection({

    user: 'root',

    password: '비밀번호',

    database: 'location'

});

 

// 웹 서버를 생성합니다.

var app = express();

var server = http.createServer(app);

 

// GET - /tracker

app.get('/tracker', function (request, response) {

    // Tracker.html 파일을 제공합니다.

    fs.readFile('Tracker.html', function (error, data) {

        response.send(data.toString());

    });

});

 

// GET - /observer

app.get('/observer', function (request, response) {

    // Observer.html 파일을 제공합니다.

    fs.readFile('Observer.html', function (error, data) {

        response.send(data.toString());

    });

});

 

// GET - /ShowData

app.get('/showdata', function (request, response) {

    // 데이터베이스의 데이터를 제공합니다.

    client.query('SELECT * FROM locations WHERE name=?', [request.param('name')], function (error, data) {

        response.send(data);

    });

});

 

// 웹 서버를 실행합니다.

server.listen(52273, function () {

    console.log('Server Running at http://127.0.0.1:52273');

});

 

// 소켓 서버를 생성 및 실행합니다.

var io = require('socket.io').listen(server);

io.sockets.on('connection', function (socket) {

    // join 이벤트

    socket.on('join', function (data) {

        socket.join(data);

    });

 

    // location 이벤트

    socket.on('location', function (data) {

        // 데이터를 삽입합니다.

        client.query('INSERT INTO locations(name, latitude, longitude, date) VALUES (?, ?, ?, NOW())', [data.name, data.latitude, data.longitude]);

 

        // receive 이벤트를 발생시킵니다.            

        io.sockets.in(data.name).emit('receive', {

            latitude: data.latitude,

            longitude: data.longitude,

            date: Date.now()

        });

    }); 

});


|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
10년 전 조회 1,348
10년 전 조회 1,383
10년 전 조회 1,364
10년 전 조회 1,307
10년 전 조회 1,778
10년 전 조회 1,293
10년 전 조회 1,289
10년 전 조회 1,508
10년 전 조회 1,311
10년 전 조회 1,359
10년 전 조회 1,186
10년 전 조회 1,460
10년 전 조회 1,276
10년 전 조회 1,196
10년 전 조회 1,271
10년 전 조회 1,925
10년 전 조회 1,293
10년 전 조회 1,286
10년 전 조회 1,303
10년 전 조회 1,405
10년 전 조회 1,871
10년 전 조회 1,465
10년 전 조회 1,295
10년 전 조회 1,216
10년 전 조회 1,251
10년 전 조회 1,358
10년 전 조회 1,266
10년 전 조회 1,336
10년 전 조회 1,238
10년 전 조회 1,431
10년 전 조회 1,272
10년 전 조회 1,244
10년 전 조회 1,182
10년 전 조회 1,841
10년 전 조회 1,341
10년 전 조회 1,259
10년 전 조회 1,284
10년 전 조회 1,275
10년 전 조회 1,298
10년 전 조회 1,266
10년 전 조회 1,778
10년 전 조회 1,237
10년 전 조회 1,306
10년 전 조회 1,189
10년 전 조회 1,769
10년 전 조회 1,353
10년 전 조회 1,363
10년 전 조회 1,405
10년 전 조회 1,342
10년 전 조회 1,361
10년 전 조회 1,277
10년 전 조회 1,177
10년 전 조회 1,312
10년 전 조회 1,173
10년 전 조회 1,517
10년 전 조회 1,236
10년 전 조회 1,247
10년 전 조회 1,230
10년 전 조회 1,255
10년 전 조회 1,323
10년 전 조회 1,221
10년 전 조회 1,243
10년 전 조회 1,436
10년 전 조회 1,244
10년 전 조회 1,352
10년 전 조회 1,312
10년 전 조회 1,331
10년 전 조회 1,459
10년 전 조회 1,320
10년 전 조회 1,280
10년 전 조회 1,293
10년 전 조회 1,414
10년 전 조회 1,290
10년 전 조회 1,246
10년 전 조회 1,279
10년 전 조회 1,287
10년 전 조회 1,337
10년 전 조회 1,267
10년 전 조회 1,496
10년 전 조회 1,631
10년 전 조회 1,540
10년 전 조회 1,303
10년 전 조회 1,294
10년 전 조회 1,261
10년 전 조회 1,252
10년 전 조회 1,380
10년 전 조회 1,291
10년 전 조회 1,245
10년 전 조회 1,296
10년 전 조회 1,639
10년 전 조회 2,115
10년 전 조회 1,682
10년 전 조회 1,477
10년 전 조회 1,328
10년 전 조회 1,311
10년 전 조회 1,332
10년 전 조회 1,285
10년 전 조회 1,303
10년 전 조회 1,329
10년 전 조회 1,490