1

JSON データを Ruby on Rails API に送信する IOS アプリがあります。Rails側でローカルにテストすると、パラメータが問題なく通過することがわかります。Heroku の本番サーバーに IOS アプリを呼び出すとすぐに、params は nil オブジェクトになります。

ここにIOSコードがあります

NSDictionary *noteVo = [NSDictionary dictionaryWithObjectsAndKeys:note->title, @"title", note->body, @"body", note->note_id, @"note_id", nil];

    NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:[_dm getUser]->uuid, @"uuid", noteVo, @"note", nil];

    NSError *writeError = nil;

    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dictionary options:NSJSONWritingPrettyPrinted error:&writeError];

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:
                                    [NSURL URLWithString:[BASE_URL stringByAppendingString:@"note/update"]] cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];
    [request setHTTPMethod:@"POST"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    [request setValue:[NSString stringWithFormat:@"%d", [jsonData length]] forHTTPHeaderField:@"Content-Length"];
    [request setHTTPBody: jsonData];

    [[NSURLConnection alloc] initWithRequest:request delegate:self];

ここにレールコードがあります

def update_note

    puts "debug note update #{ params[:note] }"

    uuid = params[:uuid]
    user = User.find_by_uuid(uuid)
    noteid = params[:note][:note_id] if params[:note][:note_id]

    if !user.nil?
      note = nil
        note = user.notes.find(noteid) if !noteid.nil?
        if !note.nil?
            user.notes.find(noteid) 
            note.update_attributes!(params[:note])
        else
            note = user.notes.build(params[:note])
        note.save
        end
        render :json => {:result => note}
    else
        render :json => {:error => "nope"}
    end
  end
4

0 に答える 0