nativescript-community / nativescript-community/https
GET fails with 'android.os.NetworkOnMainThreadException'
未关闭
还没有人认领这个 Issue。
- 主要语言
- Vue
- 星标
- 52
- 派生
- 40
- PR 合并指标
- 30 天内没有已合并 PR
描述
I'm testing on Android so I don't know about iOS.
Test code:
import * as HTTP from '@nativescript-community/https';
...
let url = "https://historylines.com/nexus/ttw.jsp?a=add&app=LA&uid=test_fde9f33899e13fcc&drill=Open%20Shooting%20-%20Single%20Target&shots=7";
console.log("logSession: "+url);
HTTP.request({
url: url,
method: "GET",
timeout: 30000
})
.then((response) => {
let content = response.content.toJSON();
console.log("logSession response: "+JSON.stringify(content, null, 4));
if(!content){
console.error("logSession response is missing content");
reject("logSession response is missing content");
}else{
resolve(content);
}
})
.catch((err) => {
console.error("logSession failed, "+err);
reject(err);
});
When I run this code or similar with core/http, it succeeds. When I put the URL in a web browser, it succeeds. When I run with https, it fails with:
logSession failed, Error: android.os.NetworkOnMainThreadException
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先,在 Android 上复现 issue 中的 GET 请求,并比较 @nativescript-community/https 路径与 core/http。跟踪请求在哪里被分发,并确定它为何会到达 main thread,然后验证同一个请求能够在不出现 NetworkOnMainThreadException 的情况下完成,并且现有的 Android 行为保持不变。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- android, javascript
- 领域
- mobile, networking
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 冷清
- 描述清晰度
- 基本清楚
- 新手友好度
- 48/100