Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前的难题是这个。我非常了解如何在应用程序本身中存储数据,但我目前的目标是让应用程序创建的每个数据条目立即发送到位于其他地方的服务器。实现这一目标的最佳方法是什么?
提前为这个模糊的问题道歉,我只是不知道从哪里开始。
通过 HTTP 将数据发送到支持 PHP 的网络服务器,该网络服务器可以将数据写入数据库。
尝试研究这些:
REST 和 SOAP。
您还可以尝试 API 和 XML。
REST 和 SOAP 是用于数据交换的协议。
API是应用程序编程接口,你可以在服务器上自己构建一个,或者看看服务器应用程序是否已经有了。
XML 是通常用于数据交换的数据格式。