書籍の請求書を作成し、ajax 経由で送信することを目指しています。請求書の書籍の配列を json エンコードしようとしていますが、空の値を取得し続けます
//create item list
var order_items = [];
$('#mi_books tbody tr.userbooks').each(function(index)
{
var bookisbn = $(this).find('td .mi_isbn').text();
var bookdata = [];
bookdata['isbn'] = bookisbn;
bookdata['title'] = $(this).find('.mi_title').text();
bookdata['qty'] = $(this).find('.mi_qty').text();
bookdata['price'] = $(this).find('.mi_price').text();
order_items.push(bookdata);
});
alert(JSON.stringify(order_items));
alert(order_items.toString());
console.log(order_items);
alert(JSON.stringify(order_items));
出力:[[]]
alert(order_items.toString());
出力: blank
console.log(order_items);
出力:
Array[1]
0: Array[0]
isbn: "9781401216672"
length: 0
price: "1007"
qty: "1"
title: "Batman: The Killing Joke"
__proto__: Array[0]
length: 1
__proto__: Array[0]
私の配列は作成されていますが、どういうわけかそれを json エンコードできないようですか? 私は何か間違ったことをしていますか?