0

我正在尝试制作一个接收用户信息并将其发送到 SQL 数据库的 spotify 应用程序。但是,我不希望使用 ajax 来完成此操作,因为我希望提交信息以将用户移动到新页面,同时将信息发布到后台的数据库中。

到目前为止,这是我的代码:

function complete2() {
var name = document.getElementById("inputname").value;
var form = '<form action="http://site.net/dbconnect.php" method="post" style="display:none">' + '<input type="text" name="name" value="' + name + '">' + '</form>';
$('body').append(form);
$(form).submit();
}

 </script>
 </head>
 <body>
<form id = "submitform" name = "submitform" action = "index.html" method = "POST" onsubmit = "complete2();" >
Name: <input type = "text" id = "inputname"> <br>
<input type = "submit" value = "Create">
</form>
 </body>
 </html> 
4

2 回答 2

1

所以我知道您不想使用 AJAX,但如果您想在本地应用程序中加载不同的 html 文件,并且 Spotify 不尊重内部资源的位置标头,那么您将被 ajax 卡住。但是,您可以使其类似于标准帖子会发生的情况,例如:

$(function(){
  $('#submitform').submit(function(e){
     e.preventDefault();
     $.post(
         $(this).attr('action'), 
         {'inputname': $(this).find('#inputname').val()}, 
         function(){ window.location.href = 'sp://yourapp/nextpage.html'; }
     );
  });
});
于 2012-06-29T03:50:41.663 回答
0

这是获取数据的示例

$.getJSON("http://www.exx.com/getjsondata.php", function (data) {
parsetheresponse(data) ; 
} 

这是发布数据的示例(仍为 JSON)

$.post("http://www.exx.com/postdataspotify.php", { albumname: "test", username: "test2" });

希望它会有所帮助。

不要忘记将http://www.exx.com放在清单文件中。

于 2012-06-29T15:53:50.503 回答