私はjQueryを使用していますが、コンソールから次のように返されます。
Data Loaded: [object Object]
jQuery:_
$(document).ready(function(){
//Button click event
$("#ajaxForm").submit(function(e){
// disable the form submit
e.preventDefault();
});
/* get some values from elements on the page: */
var $form = $( this ),
term = $form.find( 'input[name="id"]' ).val(),
url = $form.attr( 'update' );
/* Send the data using ajax */
var posting =
$.ajax({
url: url
});
$.post(url, { id: term } ).done(function(data) {
console.log("Data Loaded: " + data);
$("#result").empty().append(data);
});
});
'json'の結果を"文字列"に変換する方法。ありがとう。