I am developing a web app using the MEAN stack (no Mongo for now) I am trying to pass the name of a file on the server using a query paramerer, the error happens when i get :
"localhost:8080/api/result?filename=for-debug-file-name"
It is working well if I remove the console.log() right below But when I get the query parameter it gets me the "Error: No default engine was specified and no extension was provided”.
(This route correspond to api/result)
var express = require('express');
var router = express.Router();   
router.get('/', function(req, res) {
    console.log(req.query('filename')); // ERROR
    res.status(200).json({ "json-test": 42 });
})
module.exports = router;
Here are my angular routes :
const appRoutes: Routes = [
{
    path: 'result',
    component: ResultComponent,
},
{
    path: 'upload',
    component: UploaderComponent,
},
{
    path: '',
    redirectTo: '/upload',
    pathMatch: 'full'
}];
And here is my ResultComponent.ts :
ngOnInit() {
    this.getParsedDocumentData('for-debug-file-name');
}
getParsedDocumentData(fileName: string): Observable<string[]> {
    let params = new URLSearchParams();
    params.append('filename', fileName);
    let options = new RequestOptions({ params: params });
    return this.http.get('http://localhost:8080/api/result/', options)
                    .map(res => res.json())
                    .catch(this.handleError);
}
private handleError (error: any) {
    return Observable.throw(error);
}
I would really appreciate your help as I have been stuck for 4 hours. Thanks.
 
     
    