我试图将字符串值从角度UI传递到node.js后端api,然后使用传递的字符串值在mongodb中进行搜索,如下所示。
我尝试在enteredValue
中接受输入,并以http.get
的形式传递给params:this.enteredValue
调用,以req.params
的形式传递给node.js,如下所示我为“ orgChange”的字符串值硬编码,它可以正常工作,但是以某种方式传递参数不起作用并抛出错误?有关如何解决此问题的任何指导?
html:
<textarea rows="6" [(ngModel)]="enteredValue"></textarea>
<hr>
<button (click)="get_change_lifecycle_data()">Search</button>
<p>{{newPost | json }}</p>
组件
import { Component, OnInit, Injectable } from '@angular/core';
import { HttpClient } from "@angular/common/http";
import { Subject } from "rxjs";
import { map } from 'rxjs/operators';
@Component({
selector: 'app-change-input',
templateUrl: './change-input.component.html',
styleUrls: ['./change-input.component.css']
})
export class ChangeInputComponent {
constructor(private http: HttpClient) {}
enteredValue : any;
newPost : any;
get_change_lifecycle_data(){
this.http.get('http://localhost:3000/api/change_life_cycle2',{params:this.enteredValue}).subscribe(response => {
console.log(response);
this.newPost = response
});
}
}
node.js
硬编码“ orgChange”的字符串值,可以正常工作
app.get("/api/change_life_cycle", (req, res, next) => {
Change_life_cycle.find({ orgChange: "51918661" }).then(documents => {
res.status(200).json({
message: "Posts fetched successfully!",
posts: documents
});
});
});
带有req.params的API
app.get("/api/change_life_cycle2", (req, res, next) => {
console.log(req.body)
Change_life_cycle.find({ orgChange: req.params }).then(documents => {
res.status(200).json({
message: "Posts fetched successfully!",
posts: documents
});
});
});
错误:-
(node:75156) UnhandledPromiseRejectionWarning: CastError: Cast to string failed for value "{}" at path "orgChange" for model "change_life_cycle"
at new CastError (/Users/username/Downloads/mongodb-03-finished/node_modules/mongoose/lib/error/cast.js:29:11)
at SchemaString.cast (/Users/username/Downloads/mongodb-03-finished/node_modules/mongoose/lib/schema/string.js:553:11)
at SchemaString.SchemaType.applySetters (/Users/username/Downloads/mongodb-03-finished/node_modules/mongoose/lib/schematype.js:948:12)
at SchemaString.SchemaType._castForQuery (/Users/username/Downloads/mongodb-03-finished/node_modules/mongoose/lib/schematype.js:1362:15)
at SchemaString.castForQuery (/Users/username/Downloads/mongodb-03-finished/node_modules/mongoose/lib/schema/string.js:609:15)
at SchemaString.SchemaType.castForQueryWrapper (/Users/username/Downloads/mongodb-03-finished/node_modules/mongoose/lib/schematype.js:1331:15)
at cast (/Users/username/Downloads/mongodb-03-finished/node_modules/mongoose/lib/cast.js:252:34)
at model.Query.Query.cast (/Users/username/Downloads/mongodb-03-finished/node_modules/mongoose/lib/query.js:4576:12)
at model.Query.Query._castConditions (/Users/username/Downloads/mongodb-03-finished/node_modules/mongoose/lib/query.js:1783:10)
at model.Query.<anonymous> (/Users/username/Downloads/mongodb-03-finished/node_modules/mongoose/lib/query.js:1810:8)
at model.Query._wrappedThunk [as _find] (/Users/username/Downloads/mongodb-03-finished/node_modules/mongoose/lib/helpers/query/wrapThunk.js:16:8)
at process.nextTick (/Users/username/Downloads/mongodb-03-finished/node_modules/kareem/index.js:369:33)
at process._tickCallback (internal/process/next_tick.js:61:11)
(node:75156) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:75156) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
答案 0 :(得分:2)
编辑:有三种方法可以表达参数:
所以我想念它:)应该是req.query.searchKey。
将查询更改为这样:您需要传递具有不同名称的不同参数:
use Your\App\Name\Space\Errors;
...
$app = new \Slim\App();
$c = $app->getContainer();
$c['errorHandler'] = function ($c) {
return new Http500Error(new JsonErrorHandler(), new HtmlErrorHandler());
};
在API端,像这样读取请求中的参数:
this.http.get('http://localhost:3000/api/change_life_cycle2',
{
params:{
searchKey: this.enteredValue
}
}).subscribe(response => {
console.log(response);
this.newPost = response
});
答案 1 :(得分:2)
您可以尝试使用HttpParams
:
get_change_lifecycle_data(){
const params = new HttpParams().set('params', this.enteredValue);
this.http.get('http://localhost:3000/api/change_life_cycle2',{params})
.subscribe(response => {
console.log(response);
this.newPost = response
});
}
并在node
中使用req.query
访问参数:
app.get("/api/change_life_cycle2", (req, res, next) => {
console.log(req.body)
Change_life_cycle.find({ orgChange: req.query.params }).then(documents => {
res.status(200).json({
message: "Posts fetched successfully!",
posts: documents
});
});
});