1

我使用 Chopper 调用 api,我想得到结果 json,这是我想调用的 API [ https://api.jsonbin.io/b/5e1219328d761771cc8b9394]

想问一下这种问题怎么解决

未处理的异常:NoSuchMethodError:在 null 上调用了方法“inheritFromWidgetOfExactType”。

我的课是

part 'APIService.chopper.dart';
@ChopperApi(baseUrl:"/b/")
abstract class ApiService extends ChopperService {

  @Get(path: "5e1219328d761771cc8b9394")
  Future<Response> getPost();


  static ApiService create() {
    final client = ChopperClient(
        baseUrl: "https://api.jsonbin.io/",
        services: [_$ApiService(),],
        converter: JsonConverter());
    return _$ApiService(client);
  }
}

然后我调用这个函数来测试 Chooper

 void testAPI() async
  {
    final response  = await Provider.of<ApiService>(context).getPost();
    print(response.body);
  }

但我有一个问题,我不能调用 testAPI 你能帮我吗?

提前谢谢你,对不起语法顺便说一句,

4

1 回答 1

1
void testAPI() async
  {
    final response  = await ApiService.create().getPost();
    print(response.body);
  }

这是我的问题的正确答案

于 2020-02-18T06:29:27.630 回答