试图通过phonegap中的ajax发送POST数据

时间:2014-09-17 16:24:55

标签: javascript ajax cordova

我在我的phonegap应用程序中使用PushPlugin。我想将registrationID发送到我的服务器。我有一个网址

'http://www.vbought.com/yukyuk/?regId=' +e.regid;

如何将数据发送到服务器。

以下是我的代码看起来喜欢的方式。

case 'registered':
                if ( e.regid.length > 0 )
                {
                    //alert("regID = " + e.regid);
                    //console.log("regID = " + e.regid);
                    $.ajax({
                        type: 'POST',
                        data: '?regId='+e.regid,
                        url: 'http://www.vbought.com/yukyuk/',
                        success: function(data){
                        //console.log(data);
                            alert("Success Added");

                        },                
                        error: function(){
                            console.log(data);
                            alert('There was an error adding your comment');
                        }

                    });

                }
            break;

有人有任何想法。我如何发布数据?

谢谢! (提前)

0 个答案:

没有答案