0
我正在使用Rails使用API & Objective -c。Rails使用Objective -c的NSArray返回奇怪的JSON
目的-c面:
NSLog(@"NSArray: %@", allPosts);
我想這東西在我的鐵軌邊回事。我期待回到這樣的事情:
{
id: 1,
galleries: [
{
id: 1,
name: "my gallery",
user_id: 1,
post_id: 1
}
我在做什麼錯?爲什麼我得到這個 - >「<Post: 0x102439>
」?
的NSLog
MyBlog[17577:303] [OUT] ===> GET to http://localhost:3000/posts
MyBlog[17577:303] NSArray: (
"<Post: 0x102130060>"
)
什麼是當前的輸出和什麼是NSLog語句的輸出?我很不清楚這裏到底發生了什麼。 – moritz
@moritz對不起,我忘了添加,但我只是在上面編輯它 – goo