我想以Json格式向服务器发送数据。 这是我的数据:
var request = {
bookId: grid.getBookId(),
info: []
}
store.each(function(rec, index, length) {
request.info.push({
requestId: rec.get('???'),
authorId: rec.get('authorId'),
price: rec.get('price')
});
});
我有bookId,authorId,price的数据,但我在哪里可以获得requestId?
我想获取图片上标记为红色的数字(Chrome浏览器中的开发者工具中的网络)
答案 0 :(得分:1)
store.each(function(rec, index, length) {
// index argument contains number you are looking for
// for the current item
});