英文:
How to connect my Flutter App to my Java WebApp?
问题
我已经使用Java企业版(JSP/Servlets)和MySql 8创建了我的网站。这是一个典型的CRUD应用程序,具有一个功能,允许用户追踪汽车的位置。
我考虑使用Flutter,因为它的跨平台能力可以节省时间,但是我还没有找到任何文件可以让用户从应用程序登录到我的网站并获取一些数据。
我相信这在某种程度上是可能的。否则,是否有一种方法可以在不使用Chrome的情况下尽快地模拟我的网站。
英文:
I have created my website using Java Enterprise Edition (JSP/Servlets) and MySql 8 for my database. It is a typical CRUD application with a feature that let the user track the car's location.
I thought of using Flutter since it will save me time with its cross-platform capabilities but I have'nt found any documentations that will make the user login from the app to my website and fetch some data.
I'm pretty sure it is possible somehow. Otherwise is there a way to simulate my website as fast as possible without using Chrome obviously.
答案1
得分: 1
阅读关于 Rest API 的概念。只需使用 API 获取数据,还可以通过 API 保存数据。您需要将您的应用程序连接到您的 Web API。
英文:
Read the concept of Rest APis.Simply use the api to fetch data and you can also save data through api.You need to Connect your app to your web APi.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论