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.
我正在制作一个需要登录的电话间隙应用程序,我的应用程序从用 PHP 编写的服务器端服务获取数据,所以我打算用 mod_ssl 设置一个 apache Web 服务器并使用 jquery 的 getJSON 发布用户名和密码并确认登录
我只需要问你我是否遗漏了什么或做错了什么,或者是否有更好的方法来做到这一点
谢谢
问候,getJSON发送数据GET,所以如果你想发送数据,POST你必须使用普通的 ajax 帖子$.ajax()或简化方式:
getJSON
GET
POST
$.ajax()
$.post(url, dataToBeSent, function(data, textStatus) { //data contains the JSON object //textStatus contains the status: success, error, etc }, "json");