问题标签 [flutter-http]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
flutter - io_client.dart 中的 ClientException
当后端服务器从 HTTP 切换到 HTTPS 时,下面的代码开始出现问题。后端应用程序使用 .NET 编写并在 IIS 10.0 上运行
有关确切的例外情况,请参见下面的屏幕截图。有趣的是,没有异常消息。
该代码在其他 HTTPS 后端(例如 MS Azure 托管 API)上运行良好。API 调用在 Postman 中运行良好。
任何人都可以帮忙吗?
编辑:找到一个相关的 github问题
flutter - 在颤动中发送带有地图列表的http补丁请求
我有一个 StyleItem 类,如下所示:
然后我有一个补丁请求,它的主体应该看起来像
该字段style_items
应该具有类对象的此类映射的数组StyleItem
。我试过用 编码这些对象jsonEncode
,但后端无法读取id
。
通过 Postman,我确保后端工作正常。
为了发出我正在使用的补丁请求,请http
打包。使用以下代码
我还尝试以style_items
不同的方式为该字段编码为 Json
flutter - Flutter:列表的 jsonEncode
我正在尝试在 Flutter 中对列表进行 jsonEncode。
我尝试过的事情:
这给了我一个 Json 字符串,但是我得到的数据是:
我想发送数据以便它显示:
PS:我正在使用实时 Firebase 数据库作为后端。
flutter - Flutter:将 Map 转换为 Json
我正在尝试将复杂的地图转换为 Json 字符串以传递给我的 Firebase 实时数据库。
地图:
我尝试了什么:
这给了我一个错误:
flutter - Flutter http get() 403状态码问题
我正在练习使用flutter的http插件发出一些get请求,当我向[https://www.pexels.com]发出请求时,我得到403 Status Code。但是当我用 chrome 浏览器打开目标 URL 时它工作正常。
是否可以使用一些标题来解决?如果是这样,如何?
这是我的代码:
状态码:I/flutter (28151): 403
响应头:I/flutter (28151): {connection: close, cache-control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, set-cookie: __cfduid=d22dd51645467ea70238107d1e15f9a2d1607634921; expires=Sat, 09-Jan-21 21:15:21 GMT; path=/; domain=.pexels.com; HttpOnly; SameSite=Lax,__cf_bm=d4c93b1eb4dd2f86fe359617a86f82ba9c90e0d0-1607634921-1800-Ae/p5j0v/53c10n4CBxIlK2mTPDdau3ZpYqbReQLNVrOEyX6pjZBZ6RU0TWU8mxnL4MfxpFfNiLeHkgAlCjwzJY=; path=/; expires=Thu, 10-Dec-20 21:45:21 GMT; domain=.pexels.com; HttpOnly; Secure; SameSite=None, transfer-encoding: chunked, date: Thu, 10 Dec 2020 21:15:21 GMT, cf-request-id: 06f01b415e0000af9c2d97d000000001, content-encoding: gzip, vary: Accept-Encoding, content-type: text/html; charset=UTF-8, expect-ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct", server: cloudflare, cf-ray: 5ff9fb156d4baf9c-BGW, cf-chl-bypass: 1, x-frame-options: SAMEORIGIN, expires: Thu, 01 Jan 1970 00:00:01 GMT}
flutter - 如何在 Flutter gridview 中为 Json 对象创建事件监听器
我想知道如何在我的 gridview 中收听 json 对象,以便我可以将它们用于导航逻辑。例如选择 gridview 项目的类别 ID 并使用它在下一页中显示它的相应数据或项目。
flutter-http - 为什么我在使用 Flutter Post 方法时收到此错误
我正在尝试使用 Post 方法创建登录系统,但出现错误
我用邮递员对其进行了测试,使用它就像一个魅力。
我尝试了其他事情,但无法解决此错误。如果这里有人可以解决我的问题,将不胜感激。
飞镖代码
我用来支持数据的登录脚本。
每当我尝试登录时,我都会收到此错误。
flutter - Flutter web Http post请求无法使用http包
在 Flutter Web 上发出 http post 请求失败。我正在使用 http 包发出请求,这是我的代码:
错误:XMLHttpRequest 错误。dart-sdk/lib/_internal/js_dev_runtime/patch/core_patch.dart 906:28 获取当前包/http/src/browser_client.dart 84:22 dart-sdk/lib/async/zone.dart 1450:54 runUnary dart-sdk /lib/async/future_impl.dart 143:18 handleValue dart-sdk/lib/async/future_impl.dart 696:44 handleValueCallback
注意:在 chrome 开发工具中,我可以看到 2 个请求通过一个是我的发布请求,而我不知道另一个。另一个总是以 200 状态成功并记录在服务器上,但这不是我的发布请求。
flutter - 在flutter中从rest api获取特定用户的数据
我建立的每个人都建立了一个休息 API,它从父母到孩子具有一对一的关系。一个父母可以有很多孩子。
这可能是端点 https://example.com/api/child?email=abc@gmail.com的可能链接, 我的 json 结果是
}
我的模型文件是
我想在 listview 中显示 parent_id 为 1 的所有孩子。我不知道如何快速实现这一点。任何帮助将不胜感激。