You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was one that caused me some headache yesterday or so:
In the readme it says:
app.verb('blog', function(config, req, res) {
res.send('blog entry requested is ' + req.args[0]);
));
but the config parameter in the function does not seem to exist.
I think it should be
app.verb('blog', function(req, res) {
res.send('blog entry requested is ' + req.args[0]);
));
The text was updated successfully, but these errors were encountered:
This was one that caused me some headache yesterday or so:
In the readme it says:
app.verb('blog', function(config, req, res) {
res.send('blog entry requested is ' + req.args[0]);
));
but the config parameter in the function does not seem to exist.
I think it should be
app.verb('blog', function(req, res) {
res.send('blog entry requested is ' + req.args[0]);
));
—
Reply to this email directly or view it on GitHub #2.
This was one that caused me some headache yesterday or so:
In the readme it says:
app.verb('blog', function(config, req, res) {
res.send('blog entry requested is ' + req.args[0]);
));
but the config parameter in the function does not seem to exist.
I think it should be
app.verb('blog', function(req, res) {
res.send('blog entry requested is ' + req.args[0]);
));
The text was updated successfully, but these errors were encountered: