選項
首頁首頁 Skill 安全 flutter-use-http-package

flutter-use-http-package

flutter/skills flutter/skills

使用 `http` 套件來執行 GET、POST、PUT 或 DELETE 請求。當您需要從 REST API 擷取資料或向其傳送資料時,請使用此套件。

...展開全部
67
更新時間 2026-06-30

關於「flutter-use-http-package」

flutter-use-http-package 是一種專注於特定工作流程的可重複使用 AI 技能。名稱:flutter-use-http-package

此技能整合了操作說明、規範以及特定任務的指引,使代理程式能更一致地執行工作。描述:使用 `http` 套件來執行 GET、POST、PUT 或 DELETE 請求。 當您需要從 REST API 擷取資料或向其傳送資料時,請使用此技能。模型:models/gemini-3.1-pro-preview 最後修改時間:2026 年 4 月 21 日 星期二 21:36:42 GMT

實際上,此技能最適合需要可重複執行、且設定步驟較少、模糊性較低的使用者。 - [設定與權限](#configuration--permissions) - [請求執行與回應處理](#request-execution--response-handling) - [背景解析](#background-parsing) - [工作流程:執行網路操作](#workflow-executing-network-operations)

常見問題

flutter-use-http-package 能提供哪些協助?

flutter-use-http-package 協助代理程式遵循原始文件中所述的聚焦工作流程,減少模糊性,並確保執行過程與預定任務保持一致。

何時應使用此技能?

當任務符合技能文件中所述的工作流程、領域或運作規則時,請使用此技能,特別是在需要保持執行一致性時。

主要限制有哪些?

此技能受限於其原始指示的品質與範圍。若基礎文件不完整,客服人員可能仍需額外的背景資訊或進行手動驗證。

在 GitHub 上查看

Implementing Flutter Networking

Contents

  • Configuration & Permissions
  • Request Execution & Response Handling
  • Background Parsing
  • Workflow: Executing Network Operations
  • Examples

Configuration & Permissions

Configure the environment and platform-specific permissions required for network access.

  1. Add the http package dependency via the terminal:
    flutter pub add http
  2. Import the package in your Dart files:
    import 'package:http/http.dart' as http;
  3. Configure Android permissions by adding the Internet permission to android/app/src/main/AndroidManifest.xml:
    <uses-permission android:name="android.permission.INTERNET" />
  4. Configure macOS entitlements by adding the network client key to both macos/Runner/DebugProfile.entitlements and macos/Runner/Release.entitlements:
    <key>com.apple.security.network.client</key><true/>

Request Execution & Response Handling

Execute HTTP operations and map responses to strongly typed Dart objects.

  • URIs: Always parse URL strings using Uri.parse('your_url').
  • Headers: Inject authorization and content-type headers via the headers parameter map. Use HttpHeaders.authorizationHeader for auth tokens.
  • Payloads: For POST and PUT requests, encode the body using jsonEncode() from dart:convert.
  • Status Validation: Evaluate response.statusCode. Treat 200 OK (GET/PUT/DELETE) and 201 CREATED (POST) as success.
  • Error Handling: Throw explicit exceptions for non-success status codes. Never return null on failure, as this prevents FutureBuilder from triggering its error state and causes infinite loading indicators.
  • Deserialization: Parse the raw string using jsonDecode(response.body) and map it to a custom Dart object using a factory constructor (e.g., fromJson).

Background Parsing

Offload expensive JSON parsing to a separate Isolate to prevent UI jank (frame drops).

  • Import package:flutter/foundation.dart.
  • Use the compute() function to run the parsing logic in a background isolate.
  • Ensure the parsing function passed to compute() is a top-level function or a static method, as closures or instance methods cannot be passed across isolates.

Workflow: Executing Network Operations

Use the following checklist to implement and validate network operations.

Task Progress:

  • 1. Define the strongly typed Dart model with a fromJson factory constructor.
  • 2. Implement the network request method returning a Future<Model>.
  • 3. Apply conditional logic based on the operation type:
    • If fetching data (GET): Append query parameters to the URI.
    • If mutating data (POST/PUT): Set 'Content-Type': 'application/json; charset=UTF-8' and attach the jsonEncode body.
    • If deleting data (DELETE): Return an empty model instance on success (200 OK).
  • 4. Validate the statusCode and throw an Exception on failure.
  • 5. Integrate the Future into the UI using FutureBuilder.
  • 6. Handle snapshot.hasData, snapshot.hasError, and default to a CircularProgressIndicator.
  • 7. Feedback Loop: Run the app -> trigger the network request -> review console for unhandled exceptions -> fix parsing or permission errors.

Examples

High-Fidelity Implementation: Fetching and Parsing in the Background

import 'dart:async';import 'dart:convert';import 'dart:io';import 'package:flutter/foundation.dart';import 'package:flutter/material.dart';import 'package:http/http.dart' as http;// 1. Top-level parsing function for IsolateList<Photo> parsePhotos(String responseBody) {  final parsed = (jsonDecode(responseBody) as List<Object?>)      .cast<Map<String, Object?>>();  return parsed.map<Photo>(Photo.fromJson).toList();}// 2. Network execution with background parsingFuture<List<Photo>> fetchPhotos() async {  final response = await http.get(    Uri.parse('https://jsonplaceholder.typicode.com/photos'),    headers: {      HttpHeaders.authorizationHeader: 'Bearer your_token_here',      HttpHeaders.acceptHeader: 'application/json',    },  );  if (response.statusCode == 200) {    // Offload heavy parsing to a background isolate    return compute(parsePhotos, response.body);  } else {    throw Exception('Failed to load photos. Status: ${response.statusCode}');  }}// 3. Strongly typed modelclass Photo {  final int id;  final String title;  final String thumbnailUrl;  const Photo({    required this.id,    required this.title,    required this.thumbnailUrl,  });  factory Photo.fromJson(Map<String, dynamic> json) {    return Photo(      id: json['id'] as int,      title: json['title'] as String,      thumbnailUrl: json['thumbnailUrl'] as String,    );  }}// 4. UI Integrationclass PhotoGallery extends StatefulWidget {  const PhotoGallery({super.key});  @override  State<PhotoGallery> createState() => _PhotoGalleryState();}class _PhotoGalleryState extends State<PhotoGallery> {  late Future<List<Photo>> _futurePhotos;  @override  void initState() {    super.initState();    // Initialize Future once to prevent re-fetching on rebuilds    _futurePhotos = fetchPhotos();  }  @override  Widget build(BuildContext context) {    return FutureBuilder<List<Photo>>(      future: _futurePhotos,      builder: (context, snapshot) {        if (snapshot.hasData) {          final photos = snapshot.data!;          return ListView.builder(            itemCount: photos.length,            itemBuilder: (context, index) => ListTile(              leading: Image.network(photos[index].thumbnailUrl),              title: Text(photos[index].title),            ),          );        } else if (snapshot.hasError) {          return Center(child: Text('Error: ${snapshot.error}'));        }                // Default loading state        return const Center(child: CircularProgressIndicator());      },    );  }}

所有檔案

1 個檔案

安裝 flutter-use-http-package

請下載並將技能檔案解壓縮至您的 .claude/skills/ 目錄中。

下載 ZIP

複製儲存庫並將技能檔案複製到您的專案中。

git clone https://github.com/flutter/skills/blob/main/skills/flutter-use-http-package/SKILL.md # Copy SKILL.md to your .claude/skills/ directory

複製 複製
快速設定: 將技能資料夾複製到 .claude/skills/,Claude 會自動偵測並使用該技能
儲存庫 flutter/skills

相關技能

gmgn-portfolio
更新時間 2026-07-01
zeroize-audit
更新時間 2026-07-01
device-integrity
更新時間 2026-06-29
auth-implementation-patterns
更新時間 2026-06-29
OR