为了账号安全,请及时绑定邮箱和手机立即绑定

Flutter 与 Python 后端

Flutter 与 Python 后端

30秒到达战场 2023-05-09 09:54:23
我有一个基于 python 的网站,其中包含一个我想从 flutter 中填写的表单。当按下提交时,此表单采用一个输入文本字段(获取请求),它将生成基于 python 脚本的输出(这是一种自然语言处理)是否可以使用 flutter 连接到该网站并填写表单?我曾尝试在 flutter 中使用“HTTP”包,但我无法连接到表单任何帮助将不胜感激我尝试了以下方法:    Future<String> sendQuery(query) async{  final http.Response response = await http.get(  'http://127.0.0.1:5000/getQuery/',    headers: <String, String>{      'Content-Type': 'application/json; charset=UTF-8',    },  );}
查看完整描述

1 回答

?
芜湖不芜

TA贡献1796条经验 获得超7个赞

您可以使用此插件导航到网站

_launchURL() async {

  const url = 'https://flutter.dev';

  if (await canLaunch(url)) {

await launch(url);

 } else {

 throw 'Could not launch $url';

 }

}


查看完整回答
反对 回复 2023-05-09
  • 1 回答
  • 0 关注
  • 153 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信