在这个脚本中,我们有一个“stager”函数,它将在数据发送回数据库之前充当屏幕上用户交互的中介。AJAX 调用成功,但不是从 div 内的数据库中查询,而是 [object Object]。如果我检查控制台,我会发现来自数据库的数据是正确的。如何更改我的代码,以便我可以在我的 div 中获取文本。我一般对 AJAX 和 JavaScript 有什么基本的误解/提示将来避免这种情况。
编辑:刚刚注意到这很可能是因为我的 stageOptions 对象没有 AJAX 调用作为属性,而是纯文本。这现在更符合我想要达到的目的。
$(document).ready(function () {
var stageOptions = {
//some baseline options for the stager control
size: {
small: 'small',
medium: 'medium',
large: 'large'
},
content: {
historical: 'historical',
predictive: $.ajax({
type: "POST",
url: "../Service.asmx/GetDrugs",
contentType: "application/json",
dataType: "json",
success: function (data) {
data.d;
console.log(data.d);
console.log('success');
},
error: function (xhr) {
console.log('error');
}
})
}
};
/*************functions************************/
function stager(options) {
var $div = $('<div>').addClass(options.size);
$div.text(options.content);
return $div;
};
stager({ size: stageOptions.size.small,
//size and content will be much more variable in the future
content: stageOptions.content.predictive
}).appendTo('body');
});