Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to set the response's content_type? #187

Open
bellazhouyi opened this issue Jun 14, 2017 · 2 comments
Open

how to set the response's content_type? #187

bellazhouyi opened this issue Jun 14, 2017 · 2 comments

Comments

@bellazhouyi
Copy link

i want add content_type to response,but i don't know how to added? thanks to answer the question.

@hkalexling
Copy link

Just subclass HTTPDataResponse. For example:

// JSONHTTPResponse.h

#import <Cocoa/Cocoa.h>
#import <CocoaHTTPServer/HTTPDataResponse.h>

@interface JSONHTTPResponse : HTTPDataResponse

@end
// JSONHTTPResponse.m

#import "JSONHTTPResponse.h"

@implementation JSONHTTPResponse

- (NSDictionary *)httpHeaders {
    return @{@"Content-Type": @"application/json"};
}

@end

@bellazhouyi
Copy link
Author

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants