0

我有一个 html 文档,我想使用 ajax 将数据作为参数传递给 jsp。然后jsp可以将参数放入sql表中。我正在使用包含要放入数据的信息的变量。

        var ajaxname = document.getElementById('name').value;
        var ajaxscores = document.getElementById('scores').value;
        function  ajaxLoad{
            $.ajax({
                  url: 'http://url.com/urljsp/urljsp.jsp',
                  type: 'get',
                  data: '{scores=ajaxscores,&name=ajaxname,&make=apple,&games=foo}',
                  success: function(data) {
                    alert('Load was performed.');
                  }
                });
        } 
4

1 回答 1

0

数据应该是对象而不是字符串。在你的情况下,它可能是这样的

date: {scores: 'ajaxscores', name: 'ajaxname', make: 'apple', games: 'foo'}
于 2013-08-01T15:26:03.180 回答