Json object working in return but not outside return in render












1















I am receiving a very unusual error with my Object. I am trying to get the value of the key name from an object which looks like this



{id: 3,

image_url: "anticon anticon-gift",

is_deleted: false,

name: "Inform Partners",

org_id: null",}


The thing is I have an object coming from a state in a variable let us say this.state.description_data it looks like this



this.state.description_data



As you can see I am getting a category_id in it. I want to match that category_id from another state object which is



this.state.category_data



Now, I want to match the category_id iIgot from description_data with the id in category_data and get the value of name from it and show it in the render. I get the value but after a few refreshing or by going out of the page and coming back in it shows me error as follows



error



I have tried this code to get the value



var defaultCategoryId= this.state.description_data.map(c=>{
return c.category_id
});
console.log("description_data")
console.log(this.state.description_data)
console.log(defaultCategoryId[0])
console.log(this.state.category_data)

let catId= defaultCategoryId[0] -1;
let defaultCategoryValue = this.state.category_data[catId];

// let catValue=defaultCategoryValue.map(c=>{
// return c.name
// });
console.log(defaultCategoryValue);


The object i mentioned above is being generated in the variable let defaultCategoryValue



I am using the defaultCategoryValue.name in render method which looks like this:



return (



    <Spin spinning={this.state.loading} tip="Loading..." indicator={antIcon} delay={500} size="large">

{this.state.cover_show===false?<div>
{this.state.description_data.map(d=>
<div key={d.id}>
<Row key={d.id} style={rowStyle} gutter={gutter} justify="start" style={{marginBottom: "10px"}}>
<Col md={16} sm={12} xs={24} >
<div className="form-element">
<label className="label-class" title="">Production Name <Tooltip title="This is a name used that you can use to uniquely identify your production, making it easier for you and your contributors to find it. We recommend the name be a few words that describe the nature of the project."><Icon className="tooltip-icon" type="question-circle-o" /></Tooltip> </label>
<Input className="txt-font" name="display_app_name" id={"display_app_name-" + d.id} maxLength={70} defaultValue={d.display_app_name} onChange={this.ontxtChange} />
<span className="error-text">{this.validator.message('display_app_name', d.display_app_name, 'required|max:70', false, { default: 'This field is required.',max:'You have exceeded the maximum character limit.' })}</span>
<p style={{float:"right"}}>{d.display_app_name.length}/70</p>
</div>
<div className="form-element">
<label className="label-class" title="">Category <Tooltip title="This is where you can specify which of the options most closely aligns with the purpose of the video. If you are using a pre-built storyboard, this will have already been selected for you."><Icon className="tooltip-icon" type="question-circle-o" /></Tooltip> </label>
<Select defaultValue={defaultCategoryValue.name} onChange={this.onCategoryChange} id={"category_id-" + d.id}>
{categoryOptions}
</Select>
<span className="error-text">{this.validator.message('category_id', d.category_id, 'required', false, { default: 'This field is required.'})}</span>
</div>


Probably the way i am getting the value is wrong. I am assuming this because if i dont type defaultCategoryValue.name and write d.category_id i dont get any error. The defaultCategoryValue always revieves the data no matter how many times i refresh. But it shows error sometimes if you use it in <Select defaultValue={defaultCategoryValue.name> as you can see above in the code.



Please help me with this guys. Thank you.










share|improve this question

























  • you are not setting the state object

    – karthik shankar
    Oct 25 '18 at 6:08











  • Its set above in the code in a function. As you can see I am retrieving data in console.log()

    – Nagesh Katna
    Oct 25 '18 at 6:10
















1















I am receiving a very unusual error with my Object. I am trying to get the value of the key name from an object which looks like this



{id: 3,

image_url: "anticon anticon-gift",

is_deleted: false,

name: "Inform Partners",

org_id: null",}


The thing is I have an object coming from a state in a variable let us say this.state.description_data it looks like this



this.state.description_data



As you can see I am getting a category_id in it. I want to match that category_id from another state object which is



this.state.category_data



Now, I want to match the category_id iIgot from description_data with the id in category_data and get the value of name from it and show it in the render. I get the value but after a few refreshing or by going out of the page and coming back in it shows me error as follows



error



I have tried this code to get the value



var defaultCategoryId= this.state.description_data.map(c=>{
return c.category_id
});
console.log("description_data")
console.log(this.state.description_data)
console.log(defaultCategoryId[0])
console.log(this.state.category_data)

let catId= defaultCategoryId[0] -1;
let defaultCategoryValue = this.state.category_data[catId];

// let catValue=defaultCategoryValue.map(c=>{
// return c.name
// });
console.log(defaultCategoryValue);


The object i mentioned above is being generated in the variable let defaultCategoryValue



I am using the defaultCategoryValue.name in render method which looks like this:



return (



    <Spin spinning={this.state.loading} tip="Loading..." indicator={antIcon} delay={500} size="large">

{this.state.cover_show===false?<div>
{this.state.description_data.map(d=>
<div key={d.id}>
<Row key={d.id} style={rowStyle} gutter={gutter} justify="start" style={{marginBottom: "10px"}}>
<Col md={16} sm={12} xs={24} >
<div className="form-element">
<label className="label-class" title="">Production Name <Tooltip title="This is a name used that you can use to uniquely identify your production, making it easier for you and your contributors to find it. We recommend the name be a few words that describe the nature of the project."><Icon className="tooltip-icon" type="question-circle-o" /></Tooltip> </label>
<Input className="txt-font" name="display_app_name" id={"display_app_name-" + d.id} maxLength={70} defaultValue={d.display_app_name} onChange={this.ontxtChange} />
<span className="error-text">{this.validator.message('display_app_name', d.display_app_name, 'required|max:70', false, { default: 'This field is required.',max:'You have exceeded the maximum character limit.' })}</span>
<p style={{float:"right"}}>{d.display_app_name.length}/70</p>
</div>
<div className="form-element">
<label className="label-class" title="">Category <Tooltip title="This is where you can specify which of the options most closely aligns with the purpose of the video. If you are using a pre-built storyboard, this will have already been selected for you."><Icon className="tooltip-icon" type="question-circle-o" /></Tooltip> </label>
<Select defaultValue={defaultCategoryValue.name} onChange={this.onCategoryChange} id={"category_id-" + d.id}>
{categoryOptions}
</Select>
<span className="error-text">{this.validator.message('category_id', d.category_id, 'required', false, { default: 'This field is required.'})}</span>
</div>


Probably the way i am getting the value is wrong. I am assuming this because if i dont type defaultCategoryValue.name and write d.category_id i dont get any error. The defaultCategoryValue always revieves the data no matter how many times i refresh. But it shows error sometimes if you use it in <Select defaultValue={defaultCategoryValue.name> as you can see above in the code.



Please help me with this guys. Thank you.










share|improve this question

























  • you are not setting the state object

    – karthik shankar
    Oct 25 '18 at 6:08











  • Its set above in the code in a function. As you can see I am retrieving data in console.log()

    – Nagesh Katna
    Oct 25 '18 at 6:10














1












1








1








I am receiving a very unusual error with my Object. I am trying to get the value of the key name from an object which looks like this



{id: 3,

image_url: "anticon anticon-gift",

is_deleted: false,

name: "Inform Partners",

org_id: null",}


The thing is I have an object coming from a state in a variable let us say this.state.description_data it looks like this



this.state.description_data



As you can see I am getting a category_id in it. I want to match that category_id from another state object which is



this.state.category_data



Now, I want to match the category_id iIgot from description_data with the id in category_data and get the value of name from it and show it in the render. I get the value but after a few refreshing or by going out of the page and coming back in it shows me error as follows



error



I have tried this code to get the value



var defaultCategoryId= this.state.description_data.map(c=>{
return c.category_id
});
console.log("description_data")
console.log(this.state.description_data)
console.log(defaultCategoryId[0])
console.log(this.state.category_data)

let catId= defaultCategoryId[0] -1;
let defaultCategoryValue = this.state.category_data[catId];

// let catValue=defaultCategoryValue.map(c=>{
// return c.name
// });
console.log(defaultCategoryValue);


The object i mentioned above is being generated in the variable let defaultCategoryValue



I am using the defaultCategoryValue.name in render method which looks like this:



return (



    <Spin spinning={this.state.loading} tip="Loading..." indicator={antIcon} delay={500} size="large">

{this.state.cover_show===false?<div>
{this.state.description_data.map(d=>
<div key={d.id}>
<Row key={d.id} style={rowStyle} gutter={gutter} justify="start" style={{marginBottom: "10px"}}>
<Col md={16} sm={12} xs={24} >
<div className="form-element">
<label className="label-class" title="">Production Name <Tooltip title="This is a name used that you can use to uniquely identify your production, making it easier for you and your contributors to find it. We recommend the name be a few words that describe the nature of the project."><Icon className="tooltip-icon" type="question-circle-o" /></Tooltip> </label>
<Input className="txt-font" name="display_app_name" id={"display_app_name-" + d.id} maxLength={70} defaultValue={d.display_app_name} onChange={this.ontxtChange} />
<span className="error-text">{this.validator.message('display_app_name', d.display_app_name, 'required|max:70', false, { default: 'This field is required.',max:'You have exceeded the maximum character limit.' })}</span>
<p style={{float:"right"}}>{d.display_app_name.length}/70</p>
</div>
<div className="form-element">
<label className="label-class" title="">Category <Tooltip title="This is where you can specify which of the options most closely aligns with the purpose of the video. If you are using a pre-built storyboard, this will have already been selected for you."><Icon className="tooltip-icon" type="question-circle-o" /></Tooltip> </label>
<Select defaultValue={defaultCategoryValue.name} onChange={this.onCategoryChange} id={"category_id-" + d.id}>
{categoryOptions}
</Select>
<span className="error-text">{this.validator.message('category_id', d.category_id, 'required', false, { default: 'This field is required.'})}</span>
</div>


Probably the way i am getting the value is wrong. I am assuming this because if i dont type defaultCategoryValue.name and write d.category_id i dont get any error. The defaultCategoryValue always revieves the data no matter how many times i refresh. But it shows error sometimes if you use it in <Select defaultValue={defaultCategoryValue.name> as you can see above in the code.



Please help me with this guys. Thank you.










share|improve this question
















I am receiving a very unusual error with my Object. I am trying to get the value of the key name from an object which looks like this



{id: 3,

image_url: "anticon anticon-gift",

is_deleted: false,

name: "Inform Partners",

org_id: null",}


The thing is I have an object coming from a state in a variable let us say this.state.description_data it looks like this



this.state.description_data



As you can see I am getting a category_id in it. I want to match that category_id from another state object which is



this.state.category_data



Now, I want to match the category_id iIgot from description_data with the id in category_data and get the value of name from it and show it in the render. I get the value but after a few refreshing or by going out of the page and coming back in it shows me error as follows



error



I have tried this code to get the value



var defaultCategoryId= this.state.description_data.map(c=>{
return c.category_id
});
console.log("description_data")
console.log(this.state.description_data)
console.log(defaultCategoryId[0])
console.log(this.state.category_data)

let catId= defaultCategoryId[0] -1;
let defaultCategoryValue = this.state.category_data[catId];

// let catValue=defaultCategoryValue.map(c=>{
// return c.name
// });
console.log(defaultCategoryValue);


The object i mentioned above is being generated in the variable let defaultCategoryValue



I am using the defaultCategoryValue.name in render method which looks like this:



return (



    <Spin spinning={this.state.loading} tip="Loading..." indicator={antIcon} delay={500} size="large">

{this.state.cover_show===false?<div>
{this.state.description_data.map(d=>
<div key={d.id}>
<Row key={d.id} style={rowStyle} gutter={gutter} justify="start" style={{marginBottom: "10px"}}>
<Col md={16} sm={12} xs={24} >
<div className="form-element">
<label className="label-class" title="">Production Name <Tooltip title="This is a name used that you can use to uniquely identify your production, making it easier for you and your contributors to find it. We recommend the name be a few words that describe the nature of the project."><Icon className="tooltip-icon" type="question-circle-o" /></Tooltip> </label>
<Input className="txt-font" name="display_app_name" id={"display_app_name-" + d.id} maxLength={70} defaultValue={d.display_app_name} onChange={this.ontxtChange} />
<span className="error-text">{this.validator.message('display_app_name', d.display_app_name, 'required|max:70', false, { default: 'This field is required.',max:'You have exceeded the maximum character limit.' })}</span>
<p style={{float:"right"}}>{d.display_app_name.length}/70</p>
</div>
<div className="form-element">
<label className="label-class" title="">Category <Tooltip title="This is where you can specify which of the options most closely aligns with the purpose of the video. If you are using a pre-built storyboard, this will have already been selected for you."><Icon className="tooltip-icon" type="question-circle-o" /></Tooltip> </label>
<Select defaultValue={defaultCategoryValue.name} onChange={this.onCategoryChange} id={"category_id-" + d.id}>
{categoryOptions}
</Select>
<span className="error-text">{this.validator.message('category_id', d.category_id, 'required', false, { default: 'This field is required.'})}</span>
</div>


Probably the way i am getting the value is wrong. I am assuming this because if i dont type defaultCategoryValue.name and write d.category_id i dont get any error. The defaultCategoryValue always revieves the data no matter how many times i refresh. But it shows error sometimes if you use it in <Select defaultValue={defaultCategoryValue.name> as you can see above in the code.



Please help me with this guys. Thank you.







reactjs react-router






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 25 '18 at 5:51







Nagesh Katna

















asked Oct 25 '18 at 5:44









Nagesh KatnaNagesh Katna

415516




415516













  • you are not setting the state object

    – karthik shankar
    Oct 25 '18 at 6:08











  • Its set above in the code in a function. As you can see I am retrieving data in console.log()

    – Nagesh Katna
    Oct 25 '18 at 6:10



















  • you are not setting the state object

    – karthik shankar
    Oct 25 '18 at 6:08











  • Its set above in the code in a function. As you can see I am retrieving data in console.log()

    – Nagesh Katna
    Oct 25 '18 at 6:10

















you are not setting the state object

– karthik shankar
Oct 25 '18 at 6:08





you are not setting the state object

– karthik shankar
Oct 25 '18 at 6:08













Its set above in the code in a function. As you can see I am retrieving data in console.log()

– Nagesh Katna
Oct 25 '18 at 6:10





Its set above in the code in a function. As you can see I am retrieving data in console.log()

– Nagesh Katna
Oct 25 '18 at 6:10












1 Answer
1






active

oldest

votes


















0














Given the shape for this.state.description_data to be



[
{
//...
category_id
//...
}
]


and this.state.category_data to be



[
{
//...
id
//...
}
]


It seems about right to convert this.state.category_data from an array to an object having its keys to be the category_id. This will make it easier to lookup the category data for a category_id when mapping this.state.description_data



const CATEGORY_DATA = this.state.category_data.reduce(
(categories, category) => (
{...categories, [category.id]: category}
),
{}
)


Now, this.state.description_data can be mapped to its category data in the following way.



this.state.description_data.map(
(description) => (
<div key={description.id}>
//...
<Select
defaultValue={CATEGORY_DATA[description.category_id]}
id={"category_id-" + description.id}
onChange={this.onCategoryChange}
>
{categoryOptions}
</Select>
//...
</div>
)
)





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%2f52982102%2fjson-object-working-in-return-but-not-outside-return-in-render%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









    0














    Given the shape for this.state.description_data to be



    [
    {
    //...
    category_id
    //...
    }
    ]


    and this.state.category_data to be



    [
    {
    //...
    id
    //...
    }
    ]


    It seems about right to convert this.state.category_data from an array to an object having its keys to be the category_id. This will make it easier to lookup the category data for a category_id when mapping this.state.description_data



    const CATEGORY_DATA = this.state.category_data.reduce(
    (categories, category) => (
    {...categories, [category.id]: category}
    ),
    {}
    )


    Now, this.state.description_data can be mapped to its category data in the following way.



    this.state.description_data.map(
    (description) => (
    <div key={description.id}>
    //...
    <Select
    defaultValue={CATEGORY_DATA[description.category_id]}
    id={"category_id-" + description.id}
    onChange={this.onCategoryChange}
    >
    {categoryOptions}
    </Select>
    //...
    </div>
    )
    )





    share|improve this answer




























      0














      Given the shape for this.state.description_data to be



      [
      {
      //...
      category_id
      //...
      }
      ]


      and this.state.category_data to be



      [
      {
      //...
      id
      //...
      }
      ]


      It seems about right to convert this.state.category_data from an array to an object having its keys to be the category_id. This will make it easier to lookup the category data for a category_id when mapping this.state.description_data



      const CATEGORY_DATA = this.state.category_data.reduce(
      (categories, category) => (
      {...categories, [category.id]: category}
      ),
      {}
      )


      Now, this.state.description_data can be mapped to its category data in the following way.



      this.state.description_data.map(
      (description) => (
      <div key={description.id}>
      //...
      <Select
      defaultValue={CATEGORY_DATA[description.category_id]}
      id={"category_id-" + description.id}
      onChange={this.onCategoryChange}
      >
      {categoryOptions}
      </Select>
      //...
      </div>
      )
      )





      share|improve this answer


























        0












        0








        0







        Given the shape for this.state.description_data to be



        [
        {
        //...
        category_id
        //...
        }
        ]


        and this.state.category_data to be



        [
        {
        //...
        id
        //...
        }
        ]


        It seems about right to convert this.state.category_data from an array to an object having its keys to be the category_id. This will make it easier to lookup the category data for a category_id when mapping this.state.description_data



        const CATEGORY_DATA = this.state.category_data.reduce(
        (categories, category) => (
        {...categories, [category.id]: category}
        ),
        {}
        )


        Now, this.state.description_data can be mapped to its category data in the following way.



        this.state.description_data.map(
        (description) => (
        <div key={description.id}>
        //...
        <Select
        defaultValue={CATEGORY_DATA[description.category_id]}
        id={"category_id-" + description.id}
        onChange={this.onCategoryChange}
        >
        {categoryOptions}
        </Select>
        //...
        </div>
        )
        )





        share|improve this answer













        Given the shape for this.state.description_data to be



        [
        {
        //...
        category_id
        //...
        }
        ]


        and this.state.category_data to be



        [
        {
        //...
        id
        //...
        }
        ]


        It seems about right to convert this.state.category_data from an array to an object having its keys to be the category_id. This will make it easier to lookup the category data for a category_id when mapping this.state.description_data



        const CATEGORY_DATA = this.state.category_data.reduce(
        (categories, category) => (
        {...categories, [category.id]: category}
        ),
        {}
        )


        Now, this.state.description_data can be mapped to its category data in the following way.



        this.state.description_data.map(
        (description) => (
        <div key={description.id}>
        //...
        <Select
        defaultValue={CATEGORY_DATA[description.category_id]}
        id={"category_id-" + description.id}
        onChange={this.onCategoryChange}
        >
        {categoryOptions}
        </Select>
        //...
        </div>
        )
        )






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 17 '18 at 14:36









        Oluwafemi SuleOluwafemi Sule

        11.1k1432




        11.1k1432






























            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%2f52982102%2fjson-object-working-in-return-but-not-outside-return-in-render%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

            鏡平學校

            ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

            Why https connections are so slow when debugging (stepping over) in Java?