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

· 10년 전 · 1625

이제 사용자 위치를 저장할 "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,641
10년 전 조회 1,686
10년 전 조회 1,683
10년 전 조회 1,643
10년 전 조회 2,095
10년 전 조회 1,631
10년 전 조회 1,582
10년 전 조회 1,837
10년 전 조회 1,630
10년 전 조회 1,656
10년 전 조회 1,519
10년 전 조회 1,786
10년 전 조회 1,604
10년 전 조회 1,488
10년 전 조회 1,610
10년 전 조회 2,242
10년 전 조회 1,590
10년 전 조회 1,563
10년 전 조회 1,659
10년 전 조회 1,702
10년 전 조회 2,171
10년 전 조회 1,760
10년 전 조회 1,620
10년 전 조회 1,515
10년 전 조회 1,549
10년 전 조회 1,649
10년 전 조회 1,601
10년 전 조회 1,658
10년 전 조회 1,567
10년 전 조회 1,700
10년 전 조회 1,559
10년 전 조회 1,545
10년 전 조회 1,495
10년 전 조회 2,160
10년 전 조회 1,657
10년 전 조회 1,560
10년 전 조회 1,560
10년 전 조회 1,576
10년 전 조회 1,569
10년 전 조회 1,552
10년 전 조회 2,066
10년 전 조회 1,512
10년 전 조회 1,562
10년 전 조회 1,464
10년 전 조회 2,048
10년 전 조회 1,640
10년 전 조회 1,636
10년 전 조회 1,683
10년 전 조회 1,596
10년 전 조회 1,626
10년 전 조회 1,523
10년 전 조회 1,445
10년 전 조회 1,561
10년 전 조회 1,453
10년 전 조회 1,815
10년 전 조회 1,514
10년 전 조회 1,530
10년 전 조회 1,511
10년 전 조회 1,533
10년 전 조회 1,608
10년 전 조회 1,494
10년 전 조회 1,533
10년 전 조회 1,716
10년 전 조회 1,522
10년 전 조회 1,624
10년 전 조회 1,599
10년 전 조회 1,592
10년 전 조회 1,742
10년 전 조회 1,600
10년 전 조회 1,604
10년 전 조회 1,584
10년 전 조회 1,688
10년 전 조회 1,593
10년 전 조회 1,557
10년 전 조회 1,559
10년 전 조회 1,583
10년 전 조회 1,621
10년 전 조회 1,563
10년 전 조회 1,762
10년 전 조회 1,905
10년 전 조회 1,839
10년 전 조회 1,594
10년 전 조회 1,588
10년 전 조회 1,535
10년 전 조회 1,540
10년 전 조회 1,640
10년 전 조회 1,551
10년 전 조회 1,515
10년 전 조회 1,566
10년 전 조회 1,912
10년 전 조회 2,376
10년 전 조회 1,946
10년 전 조회 1,766
10년 전 조회 1,608
10년 전 조회 1,583
10년 전 조회 1,605
10년 전 조회 1,567
10년 전 조회 1,577
10년 전 조회 1,580
10년 전 조회 1,752