Flutter 与 Python 后端

我有一个基于 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',

    },

  );

}


30秒到达战场
浏览 154回答 1
1回答

芜湖不芜

您可以使用此插件导航到网站_launchURL() async {  const url = 'https://flutter.dev';  if (await canLaunch(url)) {await launch(url); } else { throw 'Could not launch $url'; }}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python