通过 JSON 和 jQuery 到 Selectbox 的对象数组
我在将数据集(对象数组)从 servlet 传输到 jsp/jquery 时遇到问题。
这是 servlet (Json) 发送的数据集:
[
{aktion:"ac1", id:"26"},
{aktion:"ac2", id:"1"},
{aktion:"ac3", id:"16"},
{aktion:"ac4", id:"2"}
]
jsp:
function getSelectContent($selectID) {
alert('test');
$.ajax({
url:'ShowOverviewDOC',
type:'GET',
data: 'q=getAktionenAsDropdown',
dataType: 'json',
error: function() {
alert('Error loading json data!');
},
success: function(json){
var output = '';
for (p in json) {
$('#'+$selectID).append($('<option>').text(json[p].aktion).attr('value', json[p].aktion));
}
}});
};
如果我尝试运行此错误(“加载 json 数据时出错”),则会发出警报。 有人知道错误可能出在哪里吗? 谢谢!
I have problems transferring a dataset (array of objects) from a servlet to a jsp/jquery.
This is the dataset sent by the servlet (Json):
[
{aktion:"ac1", id:"26"},
{aktion:"ac2", id:"1"},
{aktion:"ac3", id:"16"},
{aktion:"ac4", id:"2"}
]
The jsp:
function getSelectContent($selectID) {
alert('test');
$.ajax({
url:'ShowOverviewDOC',
type:'GET',
data: 'q=getAktionenAsDropdown',
dataType: 'json',
error: function() {
alert('Error loading json data!');
},
success: function(json){
var output = '';
for (p in json) {
$('#'+$selectID).append($('<option>').text(json[p].aktion).attr('value', json[p].aktion));
}
}});
};
If I try to run this the Error ('Error loading json data') is alerted.
Has someone an idea where the mistake may be?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果
error
函数正在运行,则您的服务器将返回错误响应(HTTP 响应代码 >= 400)。If the
error
function is running, then your server is returning an error response (HTTP response code >= 400).要准确了解发生了什么情况,请检查错误回调提供的 textStatus 和 errorThrown 信息。这可能有助于缩小范围。
http://api.jquery.com/jQuery.ajax/
To see exactly what is going on, check the textStatus and errorThrown information that is provided by the error callback. That might help narrow it down.
http://api.jquery.com/jQuery.ajax/
您设置数据参数的方式看起来有点可疑(请注意下面示例中的 JSON 编码)。下面是调用 .Net asmx 的样子。
此外,返回数据默认放置在返回变量的 .d 属性中。您可以通过添加一些 ajax 设置脚本来更改此默认行为。
The way you are setting the data parameter looks a bit suspect (notice JSON encoding in my example below). Here is how it would look calling a .Net asmx
Also the return data is by default placed in the .d property of the return variable. You can change this default behavior by adding some ajax setup script.