doukanwa6872 2012-02-05 21:42
浏览 96
已采纳

在Native iPhone Phonegap应用程序上使用jQuery .ajax()或.post()提交表单?

I was wondering how will I use jQuery's .ajax() or .post() to send data to a php file on my webserver from a Phonegap Native iPhone App?
Does it have to be xml or json? Or can I just send regular html post data to the file?

If you can show me an example that would be great!

UPDATE: Thanks Drew for the stellar solution! I also found an article that explained the process pretty well too.

UPDATE 2: There is a problem with my script.

Here is my javascript. I am trying to have jQuery send my sign in form data over to my PHP file. I then tell it to grab the data from the php file and display it. But all that is coming back is "null". If I request another value such as bio, it can display it. But it cant display data sent from my form.

<script type="text/javascript">
    $(document).ready(function() {
        $("img").click(function() {
            var data = $('form#signin').serialize();
            $.ajax({
                url:'signin.php',
                type:'POST',
                data: data,
                success:function(data) {
                    $("p.test").html(data);
                    $.getJSON("signin.php", function(data) {
                        localStorage.email = data[0];

                    });
                },
                error:function(data) {
                }
            });
        });
    });
</script>

Here is my PHP

<?php

$email = $_POST["email"];

$profile = array($email, "Karl", "Clement", "Gangsta Love!", "bio bio bio bio bio bio    bio     bio bio bio bio bio bio bio bio bio bio bio", "Ottawa",     "http://a3.twimg.com/profile_images/1459354642/IMG_1560_normal.jpg");

header('Content-Type:text/json');
echo json_encode($profile);

?>

Thank you so much for your help!

  • 写回答

1条回答 默认 最新

  • douturan1807 2012-02-06 00:45
    关注

    your best bet is JSON, but you can submit like a normal form. Try some experiments -

    $.ajax({
       url:'formPage.php',
       type:'POST',
       data:'name=john&email=john@smith.com',
       success:function(data){
         console.log(data);
       },
       error:function(w,t,f){
         console.log(w+' '+t+' '+f);
       }
    });
    

    should work just fine. You could also just do JSON

        $.ajax({
           url:'formPage.php',
           type:'POST',
           data:{name:'john',email:'john@smith.com'},
           success:function(data){
             console.log(data);
           },
           error:function(w,t,f){
             console.log(w+' '+t+' '+f);
           }
        });
    

    To start I would just have your app send a request to your server and have it return a statement, that way you can see that it connects and responds, then start passing variables!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀