Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7976321
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T08:53:04+00:00 2026-06-04T08:53:04+00:00

When I use expressjs, but I don’t know how to use it with streamlinejs

  • 0

When I use expressjs, but I don’t know how to use it with streamlinejs.

Look at the express code:

var app = express.createServer();

app.get('/', function(req,res) {
   User.find({name:'Jack'}, function(err, users) {
      res.send(users);
   });
});

How to use streamlinejs in the code?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T08:53:05+00:00Added an answer on June 4, 2026 at 8:53 am

    That’s a point I’m covering quickly in the FAQ (https://github.com/Sage/streamlinejs/blob/master/FAQ.md#the-underscore-trick-is-designed-for-callbacks-but-not-events-how-do-i-deal-with-events).

    The easiest solution is to add the underscore as extra parameter to the get callback:

    app.get('/', function(req,res, next, _) {
       var users = User.find({name:'Jack'}, _);
       res.send(users);
    });
    

    The only problem would be if connect adds a fourth parameter to its callback some day. The following is a bit safer (but probably overkill because I don’t see why connect would change its callback API):

    app.get('/', function(req,res) {
       (function(_) {
          var users = User.find({name:'Jack'}, _);
          res.send(users);
       })(trap); // trap is a generic callback that handles errors
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How do i get expressjs to use the delete and put methods for form?
I'm using vs2008 sp1. I've just downloaded VWD2010 Express. I don't know if I
I want to use iis express with vs 2010 but i can't install sp1
I'm using express.js and EJS as template engine. I don't understand how to use
I don't know but it may be no sense question to many of you,
Here is the two classes that I'm use to express a bidirectional OneToMany relationship.
Is it possible to use LINQ in the express version of visual studio? I
ETA: I use visual studio 2008 express edition. If I override WndProc and mess
Is it possible to use Enterprise Manager 2005 with sqlserver 2005 express? I want
I'm trying to use T4MVC in Visual Web Developer 2008 Express Edition and it's

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.