Giter Club home page Giter Club logo

Comments (4)

therealOri avatar therealOri commented on August 16, 2024

I have the same issue. it keeps saying ShortUrl is undefined and I have not got a clue why, as I followed everything to a T.

Everything starts up and works fine but when I click the shortened link or open in new tab and it just throws that error.

In the pictures provided, If I remove the lines of code in the blue bracket I get the "Cannot Get" error page just fine. But as soon as I paste the lines of code back in. Instant error and nothing loads.

git-hubPic
git-hubPic2

from url-shortener.

SumitK27 avatar SumitK27 commented on August 16, 2024

cant start server.

Faced same problem. Got solved after installing MongoDB.

from url-shortener.

Amit998 avatar Amit998 commented on August 16, 2024

app.get('/:shortUrl',async (req,res) =>{

shortUrl.findOne({ short:req.params.shortUrl } ,function(err,docs){
    

    if (docs == null ) return res.sendStatus(404)

    count = docs['click'] + 1

    var myquery = { short:req.params.shortUrl };
    var newvalues = { $set: {click: count } };

    shortUrl.updateOne(myquery,newvalues,function(err,res){
       
    })
    res.redirect(docs['full'])       
})

i guess it will help

from url-shortener.

itsRajat avatar itsRajat commented on August 16, 2024

Got the same error. Pretty sure something's wrong with the code as the forked copy of the GitHub code throws the same error.

from url-shortener.

Related Issues (7)

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.