第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

為什么 NodeJS 中 Angular 的 GET 請(qǐng)求有時(shí)有數(shù)據(jù)卻為 null

為什么 NodeJS 中 Angular 的 GET 請(qǐng)求有時(shí)有數(shù)據(jù)卻為 null

慕容708150 2023-07-14 15:45:15
GET有時(shí)我在處理請(qǐng)求時(shí)遇到一些問(wèn)題Angular。我正在使用ReplaySubject并返回,Observable但有時(shí)在應(yīng)用程序的重新加載中,get請(qǐng)求正在工作,但它正在獲取null數(shù)據(jù)或消息No content,盡管有數(shù)據(jù)。經(jīng)過(guò) 3-4 次嘗試后,它會(huì)顯示數(shù)據(jù)。該請(qǐng)求get有效,但有時(shí)為空,有時(shí)給我數(shù)據(jù)。有人可以幫我解決這個(gè)問(wèn)題嗎?如果有可能給出任何使用ReplaySubject或類(lèi)似的想法,因?yàn)槲倚枰看沃匦录虞d頁(yè)面以獲取新數(shù)據(jù)。這是我的Frontend部分。export class ModelDataService {  public baseUrl = environment.backend;  private data = new ReplaySubject<any>(1);  public userID = this.authService.userID;  constructor(private http: HttpClient, private authService: AuthService) {  }   public getJSON() {    return this.http.get(`${this.baseUrl}/data/${this.userID}`).subscribe(res => this.data.next(res));  }  public dataModel(): Observable<any> {    return this.data.asObservable();  }  public setData(data: Model) {    const api = `${this.baseUrl}/data`;    const user_id = this.authService.userID;    this.http.post(api, data, {      headers: {user_id}    }).subscribe(res => this.data.next(res));  }  public updateDate(id: string, dataModel: Model) {    const api = `${this.baseUrl}/data/${id}`;    return this.http.put(api, dataModel).subscribe(res => res);  }}這是component我得到的數(shù)據(jù)  ngOnInit() {    this.authService.getUserProfile(this.userID).subscribe((res) => {      this.currentUser = res.msg;    });    this.modelDataService.getJSON();    this.model$ = this.modelDataService.dataModel();    this.model$.subscribe((test) => {      this.model = test;    });    this.model$.subscribe((test) => {      this.model = test;    });  }這就是這backend部分。const ModelData = require("../models/data");async show(req, res) {let modelData;await ModelData.findOne({user: req.params.id}, (error, user) => {   modelData = user;}); if (!modelData) {    res.status(204).json({error: "No Data"});    return;    }return res.status(200).send(modelData);},routes.get("/data/:id", ModelDataController.show);routes.post("/data", ModelDataController.store);routes.put("/data/:id", ModelDataController.update);
查看完整描述

1 回答

?
狐的傳說(shuō)

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超3個(gè)贊

如果傳入回調(diào)函數(shù),Mongoose 將異步執(zhí)行查詢并將結(jié)果傳遞給回調(diào)。有時(shí)您無(wú)法獲取數(shù)據(jù)是因?yàn)椴樵兩形磮?zhí)行完畢。要解決此問(wèn)題,您可以將代碼更改為:

let modelData = await ModelData.findOne({user: req.params.id});
if (!modelData)...


查看完整回答
反對(duì) 回復(fù) 2023-07-14
  • 1 回答
  • 0 關(guān)注
  • 128 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)