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

· 10년 전 · 1471

이제 사용자 위치를 저장할 "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,494
10년 전 조회 1,527
10년 전 조회 1,515
10년 전 조회 1,469
10년 전 조회 1,923
10년 전 조회 1,444
10년 전 조회 1,421
10년 전 조회 1,682
10년 전 조회 1,453
10년 전 조회 1,487
10년 전 조회 1,344
10년 전 조회 1,617
10년 전 조회 1,420
10년 전 조회 1,326
10년 전 조회 1,440
10년 전 조회 2,084
10년 전 조회 1,432
10년 전 조회 1,410
10년 전 조회 1,472
10년 전 조회 1,540
10년 전 조회 2,010
10년 전 조회 1,598
10년 전 조회 1,453
10년 전 조회 1,349
10년 전 조회 1,374
10년 전 조회 1,486
10년 전 조회 1,428
10년 전 조회 1,483
10년 전 조회 1,382
10년 전 조회 1,539
10년 전 조회 1,400
10년 전 조회 1,379
10년 전 조회 1,327
10년 전 조회 1,992
10년 전 조회 1,490
10년 전 조회 1,388
10년 전 조회 1,411
10년 전 조회 1,396
10년 전 조회 1,418
10년 전 조회 1,397
10년 전 조회 1,901
10년 전 조회 1,366
10년 전 조회 1,418
10년 전 조회 1,303
10년 전 조회 1,895
10년 전 조회 1,480
10년 전 조회 1,477
10년 전 조회 1,518
10년 전 조회 1,457
10년 전 조회 1,472
10년 전 조회 1,400
10년 전 조회 1,294
10년 전 조회 1,423
10년 전 조회 1,279
10년 전 조회 1,662
10년 전 조회 1,356
10년 전 조회 1,360
10년 전 조회 1,356
10년 전 조회 1,373
10년 전 조회 1,434
10년 전 조회 1,339
10년 전 조회 1,375
10년 전 조회 1,563
10년 전 조회 1,350
10년 전 조회 1,456
10년 전 조회 1,438
10년 전 조회 1,462
10년 전 조회 1,606
10년 전 조회 1,437
10년 전 조회 1,435
10년 전 조회 1,427
10년 전 조회 1,532
10년 전 조회 1,439
10년 전 조회 1,400
10년 전 조회 1,409
10년 전 조회 1,430
10년 전 조회 1,466
10년 전 조회 1,403
10년 전 조회 1,613
10년 전 조회 1,766
10년 전 조회 1,674
10년 전 조회 1,441
10년 전 조회 1,442
10년 전 조회 1,395
10년 전 조회 1,387
10년 전 조회 1,491
10년 전 조회 1,409
10년 전 조회 1,358
10년 전 조회 1,418
10년 전 조회 1,771
10년 전 조회 2,236
10년 전 조회 1,809
10년 전 조회 1,600
10년 전 조회 1,479
10년 전 조회 1,443
10년 전 조회 1,461
10년 전 조회 1,422
10년 전 조회 1,440
10년 전 조회 1,449
10년 전 조회 1,618