Angular http.get error with responseType: 'textAngular no provider for NameServiceAngular HTML binding@Directive v/s @Component in AngularHow can I get new selection in “select” in Angular 2?How to pass url arguments (query string) to a HTTP request on Angular?Angular HTTP GET with TypeScript error http.get(…).map is not a function in [null]Angular2 http.get() ,map(), subscribe() and observable pattern - basic understandingAngular 2 beta.17: Property 'map' does not exist on type 'Observable<Response>'Angular/RxJs When should I unsubscribe from `Subscription`Huge number of files generated for every Angular project

What is a CirKle Word™?

Shouldn't the "credit score" prevent Americans from going deeper and deeper into personal debt?

How to prevent clipped screen edges on my TV, HDMI-connected?

Irish Snap: Variant Rules

How do you harvest carrots in creative mode?

Which note goes on which side of the stem?

Is there any method of inflicting the incapacitated condition and no other condition?

Why can't I choose blocks attached with pulley B as a system?

Are modern clipless shoes and pedals that much better than toe clips and straps?

Best clipless pedals for sore feet?

Defense against attacks using dictionaries

Would this system work to purify water?

Is “I am getting married with my sister” ambiguous?

Why do banks “park” their money at the European Central Bank?

Is there any practical application for performing a double Fourier transform? ...or an inverse Fourier transform on a time-domain input?

In French culture, does the metaphorical phrase "lui jeter des assiettes en pleine figure" convey the idea of "having a heated argument"?

Do they have Supervillain(s)?

What is the history of the university asylum law?

What is this symbol: semicircles facing each other?

Are there any elected officials in the U.S. who are not legislators, judges, or constitutional officers?

How to find multiple values on the same line in any permutation using Notepad++?

Compelling story with the world as a villain

Can you feel passing through the sound barrier in an F-16?

How to find out the average duration of the peer-review process for a given journal?



Angular http.get error with responseType: 'text


Angular no provider for NameServiceAngular HTML binding@Directive v/s @Component in AngularHow can I get new selection in “select” in Angular 2?How to pass url arguments (query string) to a HTTP request on Angular?Angular HTTP GET with TypeScript error http.get(…).map is not a function in [null]Angular2 http.get() ,map(), subscribe() and observable pattern - basic understandingAngular 2 beta.17: Property 'map' does not exist on type 'Observable<Response>'Angular/RxJs When should I unsubscribe from `Subscription`Huge number of files generated for every Angular project






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















Whenever i try to use requestType: 'text' in my http.get(url) call I get an error that I am unable to diff and only arrays and iterables are allowed; however, I am taking my object and transforming it into an array. I need some assistance understanding my error and how to fix my situation



When I remove the RequestType the array comes through no issues and displays on my front end.



----service-----

getAll()
const requestOptions: Object =
/* other options here */
responseType: 'text'

return this.http.get<any>(this.url, requestOptions);


---component .ts-----

notificationsFass: any[];

constructor(route: ActivatedRoute, private metaService: Meta, private notificationService: NotificationsFassService)
this.notificationsFass = [];



ngOnInit()
this.notificationService.getAll()
.subscribe(notificationsFass =>
this.notificationsFass = notificationsFass;

);


---html---

<div *ngFor="let m of notificationsFass">

---error----
ERROR Error: Error trying to diff '["incidentNumber":700,"createdByName":"FASS Notification","createdDate":"2019-03-27T09:18:15.000+0000"]'. Only arrays and iterables are allowed









share|improve this question





















  • 1





    What is the actual content-type being sent from the server? If the content-type is application/json there would be no reason to use responseType: 'text'. The "data" displayed in the error looks to be JSON, so you can just use the default responseType so that HttpClient parses the received JSON for use in your template. What is the reason you are wanting to use responseType: 'text'?

    – Alexander Staroselsky
    Mar 27 at 17:27







  • 1





    however, I am taking my object and transforming it into an array.: where? The posted code doesn't do that anywhere. You're trying to iterate through a string.

    – JB Nizet
    Mar 27 at 17:29












  • It is application/json ; however, I am getting httpResponse errors from my server when it can't render JSON from what I've read that if I can have the httpResponse text I may get rid of those errors

    – Rob DePietro
    Mar 27 at 17:31






  • 2





    No, you are taking your text response from the server (a string) and overwriting the empty array that is notificationFass.

    – UncleDave
    Mar 27 at 17:34






  • 1





    Right, *ngFor can only render objects of a specific format such as an array of objects. Definitely do not use responseType: 'text' if your content-type is application/json. It will not be parsed and will simply be a string that under no circumstances could be used by structural directives such as *ngFor. You should probably share the logic you had taking the response prior to the text responseType change and turning it into an array.

    – Alexander Staroselsky
    Mar 27 at 17:34


















0















Whenever i try to use requestType: 'text' in my http.get(url) call I get an error that I am unable to diff and only arrays and iterables are allowed; however, I am taking my object and transforming it into an array. I need some assistance understanding my error and how to fix my situation



When I remove the RequestType the array comes through no issues and displays on my front end.



----service-----

getAll()
const requestOptions: Object =
/* other options here */
responseType: 'text'

return this.http.get<any>(this.url, requestOptions);


---component .ts-----

notificationsFass: any[];

constructor(route: ActivatedRoute, private metaService: Meta, private notificationService: NotificationsFassService)
this.notificationsFass = [];



ngOnInit()
this.notificationService.getAll()
.subscribe(notificationsFass =>
this.notificationsFass = notificationsFass;

);


---html---

<div *ngFor="let m of notificationsFass">

---error----
ERROR Error: Error trying to diff '["incidentNumber":700,"createdByName":"FASS Notification","createdDate":"2019-03-27T09:18:15.000+0000"]'. Only arrays and iterables are allowed









share|improve this question





















  • 1





    What is the actual content-type being sent from the server? If the content-type is application/json there would be no reason to use responseType: 'text'. The "data" displayed in the error looks to be JSON, so you can just use the default responseType so that HttpClient parses the received JSON for use in your template. What is the reason you are wanting to use responseType: 'text'?

    – Alexander Staroselsky
    Mar 27 at 17:27







  • 1





    however, I am taking my object and transforming it into an array.: where? The posted code doesn't do that anywhere. You're trying to iterate through a string.

    – JB Nizet
    Mar 27 at 17:29












  • It is application/json ; however, I am getting httpResponse errors from my server when it can't render JSON from what I've read that if I can have the httpResponse text I may get rid of those errors

    – Rob DePietro
    Mar 27 at 17:31






  • 2





    No, you are taking your text response from the server (a string) and overwriting the empty array that is notificationFass.

    – UncleDave
    Mar 27 at 17:34






  • 1





    Right, *ngFor can only render objects of a specific format such as an array of objects. Definitely do not use responseType: 'text' if your content-type is application/json. It will not be parsed and will simply be a string that under no circumstances could be used by structural directives such as *ngFor. You should probably share the logic you had taking the response prior to the text responseType change and turning it into an array.

    – Alexander Staroselsky
    Mar 27 at 17:34














0












0








0








Whenever i try to use requestType: 'text' in my http.get(url) call I get an error that I am unable to diff and only arrays and iterables are allowed; however, I am taking my object and transforming it into an array. I need some assistance understanding my error and how to fix my situation



When I remove the RequestType the array comes through no issues and displays on my front end.



----service-----

getAll()
const requestOptions: Object =
/* other options here */
responseType: 'text'

return this.http.get<any>(this.url, requestOptions);


---component .ts-----

notificationsFass: any[];

constructor(route: ActivatedRoute, private metaService: Meta, private notificationService: NotificationsFassService)
this.notificationsFass = [];



ngOnInit()
this.notificationService.getAll()
.subscribe(notificationsFass =>
this.notificationsFass = notificationsFass;

);


---html---

<div *ngFor="let m of notificationsFass">

---error----
ERROR Error: Error trying to diff '["incidentNumber":700,"createdByName":"FASS Notification","createdDate":"2019-03-27T09:18:15.000+0000"]'. Only arrays and iterables are allowed









share|improve this question
















Whenever i try to use requestType: 'text' in my http.get(url) call I get an error that I am unable to diff and only arrays and iterables are allowed; however, I am taking my object and transforming it into an array. I need some assistance understanding my error and how to fix my situation



When I remove the RequestType the array comes through no issues and displays on my front end.



----service-----

getAll()
const requestOptions: Object =
/* other options here */
responseType: 'text'

return this.http.get<any>(this.url, requestOptions);


---component .ts-----

notificationsFass: any[];

constructor(route: ActivatedRoute, private metaService: Meta, private notificationService: NotificationsFassService)
this.notificationsFass = [];



ngOnInit()
this.notificationService.getAll()
.subscribe(notificationsFass =>
this.notificationsFass = notificationsFass;

);


---html---

<div *ngFor="let m of notificationsFass">

---error----
ERROR Error: Error trying to diff '["incidentNumber":700,"createdByName":"FASS Notification","createdDate":"2019-03-27T09:18:15.000+0000"]'. Only arrays and iterables are allowed






angular typescript http rxjs






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 27 at 17:27







Rob DePietro

















asked Mar 27 at 17:23









Rob DePietroRob DePietro

441 silver badge8 bronze badges




441 silver badge8 bronze badges










  • 1





    What is the actual content-type being sent from the server? If the content-type is application/json there would be no reason to use responseType: 'text'. The "data" displayed in the error looks to be JSON, so you can just use the default responseType so that HttpClient parses the received JSON for use in your template. What is the reason you are wanting to use responseType: 'text'?

    – Alexander Staroselsky
    Mar 27 at 17:27







  • 1





    however, I am taking my object and transforming it into an array.: where? The posted code doesn't do that anywhere. You're trying to iterate through a string.

    – JB Nizet
    Mar 27 at 17:29












  • It is application/json ; however, I am getting httpResponse errors from my server when it can't render JSON from what I've read that if I can have the httpResponse text I may get rid of those errors

    – Rob DePietro
    Mar 27 at 17:31






  • 2





    No, you are taking your text response from the server (a string) and overwriting the empty array that is notificationFass.

    – UncleDave
    Mar 27 at 17:34






  • 1





    Right, *ngFor can only render objects of a specific format such as an array of objects. Definitely do not use responseType: 'text' if your content-type is application/json. It will not be parsed and will simply be a string that under no circumstances could be used by structural directives such as *ngFor. You should probably share the logic you had taking the response prior to the text responseType change and turning it into an array.

    – Alexander Staroselsky
    Mar 27 at 17:34













  • 1





    What is the actual content-type being sent from the server? If the content-type is application/json there would be no reason to use responseType: 'text'. The "data" displayed in the error looks to be JSON, so you can just use the default responseType so that HttpClient parses the received JSON for use in your template. What is the reason you are wanting to use responseType: 'text'?

    – Alexander Staroselsky
    Mar 27 at 17:27







  • 1





    however, I am taking my object and transforming it into an array.: where? The posted code doesn't do that anywhere. You're trying to iterate through a string.

    – JB Nizet
    Mar 27 at 17:29












  • It is application/json ; however, I am getting httpResponse errors from my server when it can't render JSON from what I've read that if I can have the httpResponse text I may get rid of those errors

    – Rob DePietro
    Mar 27 at 17:31






  • 2





    No, you are taking your text response from the server (a string) and overwriting the empty array that is notificationFass.

    – UncleDave
    Mar 27 at 17:34






  • 1





    Right, *ngFor can only render objects of a specific format such as an array of objects. Definitely do not use responseType: 'text' if your content-type is application/json. It will not be parsed and will simply be a string that under no circumstances could be used by structural directives such as *ngFor. You should probably share the logic you had taking the response prior to the text responseType change and turning it into an array.

    – Alexander Staroselsky
    Mar 27 at 17:34








1




1





What is the actual content-type being sent from the server? If the content-type is application/json there would be no reason to use responseType: 'text'. The "data" displayed in the error looks to be JSON, so you can just use the default responseType so that HttpClient parses the received JSON for use in your template. What is the reason you are wanting to use responseType: 'text'?

– Alexander Staroselsky
Mar 27 at 17:27






What is the actual content-type being sent from the server? If the content-type is application/json there would be no reason to use responseType: 'text'. The "data" displayed in the error looks to be JSON, so you can just use the default responseType so that HttpClient parses the received JSON for use in your template. What is the reason you are wanting to use responseType: 'text'?

– Alexander Staroselsky
Mar 27 at 17:27





1




1





however, I am taking my object and transforming it into an array.: where? The posted code doesn't do that anywhere. You're trying to iterate through a string.

– JB Nizet
Mar 27 at 17:29






however, I am taking my object and transforming it into an array.: where? The posted code doesn't do that anywhere. You're trying to iterate through a string.

– JB Nizet
Mar 27 at 17:29














It is application/json ; however, I am getting httpResponse errors from my server when it can't render JSON from what I've read that if I can have the httpResponse text I may get rid of those errors

– Rob DePietro
Mar 27 at 17:31





It is application/json ; however, I am getting httpResponse errors from my server when it can't render JSON from what I've read that if I can have the httpResponse text I may get rid of those errors

– Rob DePietro
Mar 27 at 17:31




2




2





No, you are taking your text response from the server (a string) and overwriting the empty array that is notificationFass.

– UncleDave
Mar 27 at 17:34





No, you are taking your text response from the server (a string) and overwriting the empty array that is notificationFass.

– UncleDave
Mar 27 at 17:34




1




1





Right, *ngFor can only render objects of a specific format such as an array of objects. Definitely do not use responseType: 'text' if your content-type is application/json. It will not be parsed and will simply be a string that under no circumstances could be used by structural directives such as *ngFor. You should probably share the logic you had taking the response prior to the text responseType change and turning it into an array.

– Alexander Staroselsky
Mar 27 at 17:34






Right, *ngFor can only render objects of a specific format such as an array of objects. Definitely do not use responseType: 'text' if your content-type is application/json. It will not be parsed and will simply be a string that under no circumstances could be used by structural directives such as *ngFor. You should probably share the logic you had taking the response prior to the text responseType change and turning it into an array.

– Alexander Staroselsky
Mar 27 at 17:34













1 Answer
1






active

oldest

votes


















1















Based on the json in the error message you need to do the following:



  • Define an interface, I used the name INotification. This will define the members available on the deserialized json response.

  • Strongly type the method return types and also supply the generic type argument in http.get<T>. When http.get is called it will try to deserialize the json response from the server to an object graph. By defining INotification[] as the returned type further callers, like from a component, can now safely call members on the return type like find or other Array.prototype members as well as access the defined members on instances in the array.

responseType: 'text' is only necessary when you are not emitting a response from the server or when the response is text and not json. The former can happen with post or put or delete calls where the server might only send a status and no message body in the response.



Here is your service code rewritten based on the feedback above.



notificationsFassService.ts



export interface INotification 
incidentNumber: number;
createdByName: string;
createdDate: string;


export class NotificationsFassService
constructor (private readonly http: HttpClient)

getAll():Observable<INotification[]>
return this.http.get<INotification[]>(this.url);




notificationsFassComponent.ts



export class NotificationsFassComponent implements OnInit 
notificationsFass: INotification[];

constructor(route: ActivatedRoute, private metaService: Meta, private notificationService: NotificationsFassService)
this.notificationsFass = [];


ngOnInit()
this.notificationService.getAll()
.subscribe(notificationsFass =>
this.notificationsFass = notificationsFass;
);







share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55383182%2fangular-http-get-error-with-responsetype-text%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1















    Based on the json in the error message you need to do the following:



    • Define an interface, I used the name INotification. This will define the members available on the deserialized json response.

    • Strongly type the method return types and also supply the generic type argument in http.get<T>. When http.get is called it will try to deserialize the json response from the server to an object graph. By defining INotification[] as the returned type further callers, like from a component, can now safely call members on the return type like find or other Array.prototype members as well as access the defined members on instances in the array.

    responseType: 'text' is only necessary when you are not emitting a response from the server or when the response is text and not json. The former can happen with post or put or delete calls where the server might only send a status and no message body in the response.



    Here is your service code rewritten based on the feedback above.



    notificationsFassService.ts



    export interface INotification 
    incidentNumber: number;
    createdByName: string;
    createdDate: string;


    export class NotificationsFassService
    constructor (private readonly http: HttpClient)

    getAll():Observable<INotification[]>
    return this.http.get<INotification[]>(this.url);




    notificationsFassComponent.ts



    export class NotificationsFassComponent implements OnInit 
    notificationsFass: INotification[];

    constructor(route: ActivatedRoute, private metaService: Meta, private notificationService: NotificationsFassService)
    this.notificationsFass = [];


    ngOnInit()
    this.notificationService.getAll()
    .subscribe(notificationsFass =>
    this.notificationsFass = notificationsFass;
    );







    share|improve this answer





























      1















      Based on the json in the error message you need to do the following:



      • Define an interface, I used the name INotification. This will define the members available on the deserialized json response.

      • Strongly type the method return types and also supply the generic type argument in http.get<T>. When http.get is called it will try to deserialize the json response from the server to an object graph. By defining INotification[] as the returned type further callers, like from a component, can now safely call members on the return type like find or other Array.prototype members as well as access the defined members on instances in the array.

      responseType: 'text' is only necessary when you are not emitting a response from the server or when the response is text and not json. The former can happen with post or put or delete calls where the server might only send a status and no message body in the response.



      Here is your service code rewritten based on the feedback above.



      notificationsFassService.ts



      export interface INotification 
      incidentNumber: number;
      createdByName: string;
      createdDate: string;


      export class NotificationsFassService
      constructor (private readonly http: HttpClient)

      getAll():Observable<INotification[]>
      return this.http.get<INotification[]>(this.url);




      notificationsFassComponent.ts



      export class NotificationsFassComponent implements OnInit 
      notificationsFass: INotification[];

      constructor(route: ActivatedRoute, private metaService: Meta, private notificationService: NotificationsFassService)
      this.notificationsFass = [];


      ngOnInit()
      this.notificationService.getAll()
      .subscribe(notificationsFass =>
      this.notificationsFass = notificationsFass;
      );







      share|improve this answer



























        1














        1










        1









        Based on the json in the error message you need to do the following:



        • Define an interface, I used the name INotification. This will define the members available on the deserialized json response.

        • Strongly type the method return types and also supply the generic type argument in http.get<T>. When http.get is called it will try to deserialize the json response from the server to an object graph. By defining INotification[] as the returned type further callers, like from a component, can now safely call members on the return type like find or other Array.prototype members as well as access the defined members on instances in the array.

        responseType: 'text' is only necessary when you are not emitting a response from the server or when the response is text and not json. The former can happen with post or put or delete calls where the server might only send a status and no message body in the response.



        Here is your service code rewritten based on the feedback above.



        notificationsFassService.ts



        export interface INotification 
        incidentNumber: number;
        createdByName: string;
        createdDate: string;


        export class NotificationsFassService
        constructor (private readonly http: HttpClient)

        getAll():Observable<INotification[]>
        return this.http.get<INotification[]>(this.url);




        notificationsFassComponent.ts



        export class NotificationsFassComponent implements OnInit 
        notificationsFass: INotification[];

        constructor(route: ActivatedRoute, private metaService: Meta, private notificationService: NotificationsFassService)
        this.notificationsFass = [];


        ngOnInit()
        this.notificationService.getAll()
        .subscribe(notificationsFass =>
        this.notificationsFass = notificationsFass;
        );







        share|improve this answer













        Based on the json in the error message you need to do the following:



        • Define an interface, I used the name INotification. This will define the members available on the deserialized json response.

        • Strongly type the method return types and also supply the generic type argument in http.get<T>. When http.get is called it will try to deserialize the json response from the server to an object graph. By defining INotification[] as the returned type further callers, like from a component, can now safely call members on the return type like find or other Array.prototype members as well as access the defined members on instances in the array.

        responseType: 'text' is only necessary when you are not emitting a response from the server or when the response is text and not json. The former can happen with post or put or delete calls where the server might only send a status and no message body in the response.



        Here is your service code rewritten based on the feedback above.



        notificationsFassService.ts



        export interface INotification 
        incidentNumber: number;
        createdByName: string;
        createdDate: string;


        export class NotificationsFassService
        constructor (private readonly http: HttpClient)

        getAll():Observable<INotification[]>
        return this.http.get<INotification[]>(this.url);




        notificationsFassComponent.ts



        export class NotificationsFassComponent implements OnInit 
        notificationsFass: INotification[];

        constructor(route: ActivatedRoute, private metaService: Meta, private notificationService: NotificationsFassService)
        this.notificationsFass = [];


        ngOnInit()
        this.notificationService.getAll()
        .subscribe(notificationsFass =>
        this.notificationsFass = notificationsFass;
        );








        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 27 at 17:47









        IgorIgor

        45.1k4 gold badges56 silver badges116 bronze badges




        45.1k4 gold badges56 silver badges116 bronze badges





















            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55383182%2fangular-http-get-error-with-responsetype-text%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

            155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해