Flutter网络请求服务插件igot_http_service_helper的使用

发布于 1周前 作者 phonegap100 来自 Flutter

Flutter网络请求服务插件igot_http_service_helper的使用

Features(功能)

该插件包含一组高级函数和类,使得消费HTTP资源变得简单。它支持多平台(移动端、桌面端和浏览器),并且根据给定的TTL(Time To Live)支持多种实现方式,并且支持数据存储。

1. TTL处理:

  • 当TTL为null时: 系统会直接调用API并返回响应。

  • 当TTL不为null时: 系统会检查数据库中是否存在现有数据。

    • 如果数据存在: 它将计算数据上次更新的时间。

      • 如果时间在TTL范围内: 系统将从数据库返回数据。

      • 如果时间超过TTL: 系统将调用API,更新数据库中的数据,并返回API响应。

    • 如果数据不存在: 系统将调用API,将数据存储到数据库中,并返回API响应。

2. 强制更新处理:

  • 如果forceUpdate标志设置为true,则系统将:
    • 调用API以获取最新数据。
    • 更新数据库中的数据和TTL。
    • 返回更新后的数据。

Getting started(开始使用)

导入插件

首先,在项目中导入插件:

import 'package:igot_http_service_helper/services/http_service.dart';

基本用法

以下是一个简单的示例,展示如何使用插件进行网络请求:

var response = await HttpService.get(
  ttl: Duration(hours: 1), // 设置TTL为1小时
  apiUri: Uri.parse('https://jsonplaceholder.typicode.com/posts'), // 目标API地址
);

Usage(使用示例)

示例代码

以下是一个完整的示例,展示如何在Flutter应用中使用igot_http_service_helper插件进行网络请求。

文件结构

我们将在example/example.dart文件中编写代码。

示例代码
// 导入必要的库
import 'dart:convert';

import 'package:flutter/material.dart';
import 'package:http/http.dart';
import 'package:igot_http_service_helper/services/http_service.dart';

// 主应用程序入口
void main() {
  runApp(const MyApp());
}

// 应用主界面
class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('igot_http_service_helper 示例'),
        ),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              // 按钮用于触发网络请求
              ElevatedButton(
                onPressed: () {
                  ApiService.getApiRequest().then((data) {
                    print('获取的数据: $data');
                  }).catchError((error) {
                    print('发生错误: $error');
                  });
                },
                child: Text('获取数据'),
              )
            ],
          ),
        ),
      ),
    );
  }
}

// 封装API请求逻辑
class ApiService {
  static Future<dynamic> getApiRequest() async {
    try {
      // 调用HttpService.get方法进行网络请求
      Response response = await HttpService.get(
        apiUri: Uri.parse("https://jsonplaceholder.typicode.com/posts"), // 请求的目标URL
        ttl: Duration(minutes: 30), // 设置TTL为30分钟
      );

      // 解析返回的JSON数据
      var contents = jsonDecode(response.body);
      return contents;
    } catch (e) {
      // 捕获并打印错误信息
      throw Exception('API请求失败: $e');
    }
  }
}

运行效果

运行上述代码后,点击按钮即可触发网络请求。插件会根据TTL缓存机制决定是从数据库还是直接从API获取数据。

输出示例

如果TTL内未过期,控制台可能输出类似以下内容:

获取的数据: [{id: 1, userId: 1, title: sunt aut facere repellat provident, body: quia et suscipit ...}]

更多关于Flutter网络请求服务插件igot_http_service_helper的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

1 回复

更多关于Flutter网络请求服务插件igot_http_service_helper的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html


igot_http_service_helper 是一个用于简化 Flutter 应用中网络请求的插件。它提供了一种简单的方式来执行 HTTP 请求,并处理响应数据。以下是如何使用 igot_http_service_helper 的基本步骤:

1. 添加依赖

首先,你需要在 pubspec.yaml 文件中添加 igot_http_service_helper 依赖:

dependencies:
  flutter:
    sdk: flutter
  igot_http_service_helper: ^1.0.0  # 请使用最新版本

然后运行 flutter pub get 来安装依赖。

2. 导入包

在你的 Dart 文件中导入 igot_http_service_helper

import 'package:igot_http_service_helper/igot_http_service_helper.dart';

3. 初始化服务

在使用之前,你可以初始化 HttpServiceHelper,通常你可以在 main.dart 中进行初始化:

void main() {
  HttpServiceHelper.init(
    baseUrl: 'https://api.example.com', // 你的API基础URL
    headers: {
      'Content-Type': 'application/json',
      'Authorization': 'Bearer your_token',
    },
  );
  runApp(MyApp());
}

4. 发起网络请求

你可以使用 HttpServiceHelper 提供的方法来发起 GET、POST、PUT、DELETE 等请求。

GET 请求

Future<void> fetchData() async {
  try {
    var response = await HttpServiceHelper.get('/endpoint');
    print('Response data: ${response.data}');
  } catch (e) {
    print('Error: $e');
  }
}

POST 请求

Future<void> postData() async {
  try {
    var response = await HttpServiceHelper.post(
      '/endpoint',
      data: {
        'key1': 'value1',
        'key2': 'value2',
      },
    );
    print('Response data: ${response.data}');
  } catch (e) {
    print('Error: $e');
  }
}

PUT 请求

Future<void> updateData() async {
  try {
    var response = await HttpServiceHelper.put(
      '/endpoint',
      data: {
        'key1': 'updated_value1',
        'key2': 'updated_value2',
      },
    );
    print('Response data: ${response.data}');
  } catch (e) {
    print('Error: $e');
  }
}

DELETE 请求

Future<void> deleteData() async {
  try {
    var response = await HttpServiceHelper.delete('/endpoint');
    print('Response data: ${response.data}');
  } catch (e) {
    print('Error: $e');
  }
}

5. 处理响应

HttpServiceHelper 返回的响应对象通常包含 datastatusCode 等信息。你可以根据需要进行处理。

Future<void> fetchData() async {
  try {
    var response = await HttpServiceHelper.get('/endpoint');
    if (response.statusCode == 200) {
      print('Data: ${response.data}');
    } else {
      print('Failed to load data: ${response.statusCode}');
    }
  } catch (e) {
    print('Error: $e');
  }
}

6. 错误处理

HttpServiceHelper 会自动处理一些常见的网络错误,但你也可以在 catch 块中自定义错误处理逻辑。

Future<void> fetchData() async {
  try {
    var response = await HttpServiceHelper.get('/endpoint');
    print('Response data: ${response.data}');
  } on DioError catch (e) {
    print('DioError: ${e.message}');
  } catch (e) {
    print('Error: $e');
  }
}

7. 其他配置

你还可以在 HttpServiceHelper.init 中配置其他选项,如超时时间、拦截器等。

HttpServiceHelper.init(
  baseUrl: 'https://api.example.com',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer your_token',
  },
  connectTimeout: 5000, // 连接超时时间
  receiveTimeout: 3000, // 接收超时时间
  interceptors: [
    (RequestOptions options) {
      // 请求拦截器
      print('Request: ${options.method} ${options.path}');
      return options;
    },
    (Response response) {
      // 响应拦截器
      print('Response: ${response.statusCode}');
      return response;
    },
  ],
);

8. 使用示例

以下是一个完整的示例,展示如何在 Flutter 应用中使用 igot_http_service_helper 进行网络请求:

import 'package:flutter/material.dart';
import 'package:igot_http_service_helper/igot_http_service_helper.dart';

void main() {
  HttpServiceHelper.init(
    baseUrl: 'https://api.example.com',
    headers: {
      'Content-Type': 'application/json',
      'Authorization': 'Bearer your_token',
    },
  );
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  [@override](/user/override)
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('HttpServiceHelper Example'),
        ),
        body: Center(
          child: ElevatedButton(
            onPressed: () {
              fetchData();
            },
            child: Text('Fetch Data'),
          ),
        ),
      ),
    );
  }

  Future<void> fetchData() async {
    try {
      var response = await HttpServiceHelper.get('/endpoint');
      if (response.statusCode == 200) {
        print('Data: ${response.data}');
      } else {
        print('Failed to load data: ${response.statusCode}');
      }
    } catch (e) {
      print('Error: $e');
    }
  }
}
回到顶部
AI 助手
你好,我是IT营的 AI 助手
您可以尝试点击下方的快捷入口开启体验!