次の関数呼び出しで ajax リクエストを使用しています。
var test = initBuild(id);
test.success(function (data){
console.log(data);
});
data
返されるのは次のようになります
{"built_when":{"id":"43701","clientId":"245","name":"Big Ass Gallery","productId":"0","desc":null,"bgColor":"#000000","fontColor":"ffffff","sort":"43701","clientRef":"205","isFeatured":"0","created":"1367356190","views":"0","finish":"0","isArchive":"0","showMailShare":"0","hardPageFlip":"0","hardCoverFlip":"0","isTemp":"0","agreement":"0","maxChange":"0","countChange":"0","verticalFlip":"0","musicSwitch":"0","showFbShare":"0","twitter":null,"email":"0","pageHeight":"1000","pageWidth":"1391"}}
data.built_when.id でアクセスしようとしているのですが、null を返しています。これには何が欠けていますか。
ありがとう