如何使用Flutter将数据sqflite(离线)发送到服务器mysql?

时间:2019-01-22 22:11:06

标签: flutter sqflite

当没有信号时,我通过将数据存储到设备(Sqflite)来使用离线模式。发出信号后,我尝试将数据发送到Mysql服务器。

如何将数据从Sqflite(脱机模式)发送到Mysql服务器?

1 个答案:

答案 0 :(得分:1)

在远程服务器中创建一个类似于sqflite db表的数据库。然后,使用您需要的语言创建一个rest api(php很容易启动)。然后,当应用程序连接到Internet时,使用HTTP客户端将数据发送到远程服务器。

您可以使用以下代码进行后数据调用:

Future<dynamic> post(String url, {Map headers, body, encoding}) {
print(url);
print(body);
return http
    .post(BASE_URL+url, body: body, headers: headers, encoding: encoding)
    .then((http.Response response) {
  final String res = response.body;
  final int statusCode = response.statusCode;

  print(res);

  if (statusCode < 200 || statusCode > 400 || json == null) {
    throw new Exception("Error while fetching data");
  }
  return _decoder.convert(res);
});
}