最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Svelte: How to pass data or props from a child component to the parent? - Stack Overflow

programmeradmin1浏览0评论

I'll try to be brief. I'm having the main ponent app.svelte. Inside it I'm using a child ponent called Course.svelte. I'm using an {#each} block to repeat the same ponent many times. The thing is I want the app.svelte to know whenever a single ponent is on:clicked. Right now I'm handling the on:click event in the Course.svelte ponent. And like this, App.svelte won't ever know about it. What should I do?

A snippet of Course.svelte and how I'm handling the on:click event:

<script>
  function handleClick() {
    if (state == courseStates.CLOSED) {
      //Handle closed course
    } else {
      if (state === courseStates.READY) {
        passCourse();
      } else if (state === courseStates.PASS) {
        failCourse();
      }
    }
  }
  function passCourse() {
    state = courseStates.PASS;
  }
  function failCourse() {
    state = courseStates.READY;
  }
</script>

<div on:click={handleClick} class="text-center course btn {buttonClass}">
  <h1>{name}</h1>
  <h4>{code} - {credit} Credit Hours - Term {term}</h4>
</div>

A snippet of App.svelte where I want to maintain the state of each course as it changes over time by clicking the course:

<div class="row">
    {#each courses as course}
      {#if course.term == term}
        <Course
          state={course.state}
          name={course.name}
          credit={course.credit}
          term={course.term}
          code={course.code}
          on:removecourse={removeCourse} />
      {/if}
    {/each}
  </div>

I'll try to be brief. I'm having the main ponent app.svelte. Inside it I'm using a child ponent called Course.svelte. I'm using an {#each} block to repeat the same ponent many times. The thing is I want the app.svelte to know whenever a single ponent is on:clicked. Right now I'm handling the on:click event in the Course.svelte ponent. And like this, App.svelte won't ever know about it. What should I do?

A snippet of Course.svelte and how I'm handling the on:click event:

<script>
  function handleClick() {
    if (state == courseStates.CLOSED) {
      //Handle closed course
    } else {
      if (state === courseStates.READY) {
        passCourse();
      } else if (state === courseStates.PASS) {
        failCourse();
      }
    }
  }
  function passCourse() {
    state = courseStates.PASS;
  }
  function failCourse() {
    state = courseStates.READY;
  }
</script>

<div on:click={handleClick} class="text-center course btn {buttonClass}">
  <h1>{name}</h1>
  <h4>{code} - {credit} Credit Hours - Term {term}</h4>
</div>

A snippet of App.svelte where I want to maintain the state of each course as it changes over time by clicking the course:

<div class="row">
    {#each courses as course}
      {#if course.term == term}
        <Course
          state={course.state}
          name={course.name}
          credit={course.credit}
          term={course.term}
          code={course.code}
          on:removecourse={removeCourse} />
      {/if}
    {/each}
  </div>
Share Improve this question edited Sep 2, 2020 at 18:49 OmaRosh asked Sep 1, 2020 at 23:45 OmaRoshOmaRosh 631 silver badge4 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

You can use two-way data binding by adding App.svelte bind:state={course.state}. Now the value in App.svelte will be updated if the value is changed in Course.svelte.

Here is a REPL:
https://svelte.dev/repl/48649794a7144d63bbde67a2db2f67a9?version=3.24.1

There are a much better ways to handle this problem and you should be careful when to use two-way binding. With two-way binding you’ll mess your dataflow very easily.

Better ways to handle dataflow:

  • Pass a function from parent to child
  • Pass the whole data-object to child ponent
  • Use store
  • Use custom events createEventDispatcher
发布评论

评论列表(0)

  1. 暂无评论