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

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

移動(dòng)設(shè)備上的對(duì)象 XMLHttpRequestProgressEvent 錯(cuò)誤

移動(dòng)設(shè)備上的對(duì)象 XMLHttpRequestProgressEvent 錯(cuò)誤

暮色呼如 2022-01-13 20:01:53
我有一個(gè) node.js 和 Ionic (angular) 應(yīng)用程序,當(dāng)我嘗試從我的手機(jī)進(jìn)行 API 調(diào)用時(shí),我收到了這個(gè)錯(cuò)誤 -> object XMLHttpRequestProgressEvent我正在像這樣服務(wù)我的 Ionic 應(yīng)用程序ionic serve --address=10.0.0.107。它不適用于來(lái)自客戶(hù)端的每個(gè)電話(huà)僅在電話(huà)上,當(dāng)我從桌面撥打電話(huà)時(shí),一切都很好。這是來(lái)自 auth.service.ts 的登錄部分  loginUser(u: User): Observable<any> {    const url = `${this.baseUrl}/auth`;    const body = { username: u.username, password: u.password };    // When you want to send a cookies with requests,    // you have to put "withCredentials: true" into request option    return this.http.post(url, body, this.noAuthOptions);  }這是我的選擇: private readonly baseUrl = "http://localhost:3000"; private readonly contentType = { "Content-Type": "application/json" }; private readonly noAuth = { "No-Auth": "True" }; private readonly header = new HttpHeaders(this.contentType); private readonly noAuthHeader = new HttpHeaders({    ...this.contentType,    ...this.noAuth  }); private readonly options = { headers: this.header, withCredentials: true }; private readonly noAuthOptions = {    headers: this.noAuthHeader,    withCredentials: true  };這是我在 github 上的代碼(前端)https://github.com/TenPetr/dashboard 和后端部分:https ://github.com/TenPetr/dashboard_backend你有什么想法,為什么會(huì)這樣?
查看完整描述

1 回答

?
holdtom

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

問(wèn)題是這一行:

private readonly baseUrl = "http://localhost:3000";

它可以在 PC 上運(yùn)行,因?yàn)樗ㄟ^(guò) hosts 文件(位于 C:\Windows\System32\drivers\etc\hosts 中)知道此地址

但是,移動(dòng)設(shè)備在本地沒(méi)有此文件,因此無(wú)法解析 url。

您需要運(yùn)行服務(wù)器并將 localhost 替換為您的 IP 地址。 https://ngrok.com/docs#getting-started


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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