Вывод вложенных данных JSON в переменные узла JS - PullRequest
0 голосов
/ 06 декабря 2018

Добрый день, Как я могу получить данные от Json и сделать их переменными на Nodejs?и как я могу рассчитать время, какой синтаксис я собираюсь использовать?Я новичок в NodeJS, спасибо заранее

App.js

это дает мне ошибку на модуле в моем пути индекса

const path = require('path');

const express = require('express');
const bodyParser = require('body-parser');

const app = express();

app.set('view engine', 'ejs');
app.set('views', 'views');

const indexRoutes = require('./routes/index');

app.use(bodyParser.urlencoded({ extended: false }));
app.use(express.static(path.join(__dirname, 'public')));

app.use(indexRoutes);


app.listen(8080);

Контроллер

const Schedule = require('../models/schedule');

exports.getSchedule = (req, res, next) => {
  Schedule.fetchAll(schedule => {
    res.render('index', {
      sched: schedule,
      pageTitle: 'Schedule',
      path: '/routes'
    });
  });
};

Модели

const fs = require('fs');
const path = require('path');

const p = path.join(
  path.dirname(process.mainModule.filename),
  'data',
  'dbm_input.json'
);

const getScheduleFromFile = cb => {
  fs.readFile(p, (err, fileContent) => {
    if (err) {
      cb([]);
    } else {
      cb(JSON.parse(fileContent));
    }
  });
};

module.exports = class Schedule {
  constructor(employee_info,) {
    this.;
    this.;
    this.;
    this.;
  }

  static fetchAll(cb) {
    getScheduleFromFile(cb);
  }
};

Маршруты

const path = require('path');

const express = require('express');

const ScheduleController = require('../controller/ScheduleController');

const router = express.Router();

router.get('/', ScheduleController.getSchedule);

module.exports = router;

JSON

{"652":
    {"employee_info":
            {"employee_name":""},
        "date_log":
            {
                "2017-12-31":
                {
                    "config":{
                        "shift":"R","hours_per_day":8,
                        "break_hours":1,"flexi_hours":0,
                        "grace_period":15
                    },
                    "log":{
                        "time_in":"2017-12-31 07:35:37",
                        "time_out":"2017-12-31 09:34:01",
                        "break_out":["2017-12-31 12:00:00"],
                        "break_in":["2017-12-31 13:00:00"],
                        "shift_in":"2017-12-31 16:00:00",
                        "shift_out":"2017-12-31 16:00:00",
                        "status":"present",
                        "holiday":"no",
                        "overtime":"no"}
                },
                "2017-12-29":
                    {
                        "config":{
                            "shift":"FL",
                            "hours_per_day":8,
                            "break_hours":1,
                            "flexi_hours":2,
                            "grace_period":0},
                        "log":{
                            "time_in":"2017-12-29 00:20:00",
                            "time_out":"2017-12-29 10:35:00",
                            "break_out":["2017-12-31 12:00:00"],
                            "break_in":["2017-12-31 13:00:00"],
                            "shift_in":"2017-12-29 16:00:00",
                            "shift_out":"2017-12-29 16:00:00",
                            "status":"present",
                            "holiday":"no",
                            "overtime":"no"
                    }
                },
                "2017-12-28":
                    {
                        "config":{
                            "shift":"R",
                            "hours_per_day":8,
                            "break_hours":1,
                            "flexi_hours":0,
                            "grace_period":0},
                        "log":{
                            "time_in":"2017-12-28 00:02:25",
                            "time_out":"2017-12-29 10:35:00",
                            "break_out":["2017-12-31 12:00:00"],
                            "break_in":["2017-12-31 13:00:00"],
                            "shift_in":"2017-12-28 16:00:00",
                            "shift_out":"2017-12-28 16:00:00",
                            "status":"present",
                            "holiday":"no",
                            "overtime":"no"
                            }}
                    }
                }
}

Я долго искал, кажется, я не знаю, что мне нужно искать, потому что я не могу найти решение для этого.я просто хочу превратить данные в переменные и как рассчитать время, данное на данных и где я должен их поместить.и как я могу зациклить данные, когда я рассчитал данные.Я действительно нуб к nodejs, помогите мне, ребята?Заранее спасибо

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...