如何使用 Flutter 将数据 SQLite(离线)发送到服务器 MySQL?
How can I send data SQLite (offline) to server MySQL using Flutter?
当没有信号时,我通过将数据存储到设备 (SQLite) 使用离线模式。出现信号后,我尝试将数据发送到 Mysql 服务器。
如何将数据从 SQLite(离线模式)发送到 MySQL 服务器?
在远程服务器中创建一个类似于您的 sqflite 数据库 table 的数据库。然后,使用您想要的语言创建休息 api(php 很容易开始)。然后,当应用程序连接到互联网时,使用 HTTP 客户端将数据发送到远程服务器。
您可以使用如下代码进行 post 数据调用:
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);
});
}
当没有信号时,我通过将数据存储到设备 (SQLite) 使用离线模式。出现信号后,我尝试将数据发送到 Mysql 服务器。
如何将数据从 SQLite(离线模式)发送到 MySQL 服务器?
在远程服务器中创建一个类似于您的 sqflite 数据库 table 的数据库。然后,使用您想要的语言创建休息 api(php 很容易开始)。然后,当应用程序连接到互联网时,使用 HTTP 客户端将数据发送到远程服务器。
您可以使用如下代码进行 post 数据调用:
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);
});
}