Coder Social home page Coder Social logo

Comments (4)

imakshath avatar imakshath commented on May 8, 2024 1

Fixed the issue by using

users = res.map( user => user.toJSON() );

from routing-controllers.

pleerock avatar pleerock commented on May 8, 2024

what is a response content here? also try to do response.end after response.send

from routing-controllers.

imakshath avatar imakshath commented on May 8, 2024

I have tried https://github.com/MContagious/routing-controller-sample. And changed my code which now looks like below,

UserController.ts


import { Service } from "typedi";
import { JsonController, Get, Post, Put, Delete, Body, Param, EmptyResultCode, NotFoundError } from "routing-controllers";
import { UserService } from "../services/UserService";
import { IUser } from "../models/User";

import * as debug from 'debug';

const mod = "MarketEve:UserController";

@Service()
@JsonController("/v1/users")
export class UserController {

    constructor(private userService:UserService) {
        this.userService = new UserService();
    }

    @Get("/")
    getUsers():Promise<IUser[]> {
        return this.userService.fetchAll().then((users) => {
           return users;
        }).catch((err) => {
            debug(`ERROR:${module}:getHeroById`)(err);
            throw new NotFoundError(err.message);
        });
    }
}

UserService.ts

import mongoose = require('mongoose');
import { Service } from "typedi";

import { User, IUser } from '../models/User';

@Service()
export class UserService {
    constructor() {
    }
    fetchAll(){
        return new Promise((resolve, reject) => {
            User.find({})
            .populate('_creator')
            .exec((err: any, res: any) => {
                if(err){
                    reject(new Error("No users found"));
                }else{
                    resolve(res);
                    console.log(res);
                }
            })
        });
    }

User.ts (model)

import mongoose = require('mongoose');
const Schema   = mongoose.Schema;
const ObjectId = Schema.ObjectId;

export interface IUser {
    _id: String,
    first_name: String,
    last_name: String,
    email: String,
    social_networks: Object,
    created_on: Date,
    activeFlag: Boolean 
};

export const UserSchema  = new mongoose.Schema(
    {
        _id: { type: ObjectId, default: mongoose.Types.ObjectId, required: true },
        first_name: { type: String, required: true },
        last_name: { type: String, required: true },
        email: { type: String, required: true },
        social_networks: {type: Object},
        created_on: {type: Date},
        activeFlag: { type: Boolean, required: true, default: true }
    },
    {
        collection: 'users',
        autoIndexed: true,
            toJSON: {
            transform: function(userModel: any, userDto: any) {
                delete userDto.__v;
                delete userDto.activeFlag
            }
        }
    }
);

export const User = mongoose.model<IUser>('User', UserSchema);

Now am getting below output:

screen shot 2016-11-25 at 10 13 11 am

with a error in my console,

screen shot 2016-11-25 at 10 13 23 am

from routing-controllers.

github-actions avatar github-actions commented on May 8, 2024

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

from routing-controllers.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.