gpt4 book ai didi

http请求在 postman 中有效,但在浏览器中无效

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:21:16 25 4
gpt4 key购买 nike

我能够发送帖子并从 postman 那里获取请求,但是当我实际从浏览器发送该请求时,它无法获取记录并且在控制台中显示错误“body: {error: “Collection 'undefined' not found”} ".

尝试了 Get 和 Post 请求,它们都在 POSTMAN 中提供数据作为响应,但在浏览器中它不起作用。显示错误“body: {error: “Collection 'undefined' not found”}”。在不同地方的同一个项目中,我也在使用内存数据库,我可以向它发出/GETRequest 并接收数据作为响应。

homepage.ts:=============
public AllItem: AllItems[] ;
getAllItems(): void {
console.log('AA');
this.itemService.getAllItems() //(this.AllItems)
.subscribe(AllItem => this.AllItem = AllItem );
console.log(this.AllItem);
console.log('EE');
}

item.Service.ts:===============
private itemsUrl = 'api/items'; // URL to web api
private allItemsUrl = 'http://*************.azurewebsites.net/items';
getAllItems(): Observable<AllItems[]>{
console.log('CC');
return this.http.get<AllItems[]>(this.allItemsUrl)
.pipe(
tap(_ => this.log('fetched heroes')),
catchError(this.handleError<AllItems[]>('getHeroes', []))
);
}

// this get request work properly and gives response data from in-memoery-db
getItems(): Observable<Item[]> {
return this.http.get<Item[]>(this.itemsUrl)
.pipe(
tap(_ => this.log('fetched heroes')),
catchError(this.handleError<Item[]>('getHeroes', []))
);
}

in POSTMAN it gives data as
{
"items": [
{
"category": "Drink",
"item": "Coffee",
"price": "5$"
}]
}

in Browser console
core.js:15724 ERROR
body: {…}, url: "http://**********.azurewebsites.net/items", headers: HttpHeaders, status: 404, statusText: "Not Found"}
body: {error: "Collection 'undefined' not found"}
headers: HttpHeaders {normalizedNames: Map(0), lazyUpdate: null, lazyInit: ƒ}
status: 404
statusText: "Not Found"
url: "http://*************.azurewebsites.net/items"
__proto__: Object

最佳答案

找到了解决方案,实际上我在同一个项目的其他一些地方使用了 in-memory-web-api,Not found collection 错误提示你之前使用过angular-in-memory-web-api。您需要从您的项目中删除与此相关的所有内容,以便您能够使用外部 api 和 db。

“InMemoryWebApiModule.forRoot(InMemoryDataService)”Angular in-memory-web-api,它取代了 HttpClient 模块的 HttpBackend 所以在使用实际服务器和数据库之前需要先删除它

在此之后,我遇到了另一个问题,即对预检请求的响应未通过访问控制检查:请求的资源上不存在“Access-Control-Allow-Origin” header 。

为此,我们需要在 Azure 的节点服务器中使用以下内容。var cors = require('cors');app.use(cors({origin: '*'}));

关于http请求在 postman 中有效,但在浏览器中无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57749162/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com