我正在尝试将 json 对象(name
& color
)的值附加到表单中的两个输入字段。这是在我的网络服务器中进行的 api 调用的模型。jQuery 函数获取第一个输入字段的值,然后连接 url + json 文件位置,最后进行 api 调用。控制台显示值已成功检索,但我不确定如何将它们相应地附加到其输入字段。地点
杰森:
{
"name": "test1",
"color": "red",
}
jQuery/AJAX
$(document).ready(function() {
/** get the inputs we might need */
var $result = $('#result');
var $input = $('#input');
$result.data('url', $result.val());
var timer;
/** function to submit data to the server and
update the result input on success */
function submitForm( input, newValue) {
$.ajax({
type: "GET",
url: newValue,
data: {input:input},
dataType: 'json',
success: function (data) {
$result.val(newValue);
}
});
};
/** on key up, fill #result with the url + input */
$input.bind('keyup', function() {
var $this = $(this);
var inp = $this.val();
var url = $result.data('url');
var newValue = url + inp + '/info.json';
if(timer) { clearTimeout(timer); }
timer = setTimeout(function(){
submitForm(inp, newValue) ;
}, 500);
return false;
});
});