admin管理员组文章数量:1343311
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
1 Answer
Reset to default 11You 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
本文标签: javascriptSvelte How to pass data or props from a child component to the parentStack Overflow
版权声明:本文标题:javascript - Svelte: How to pass data or props from a child component to the parent? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743726386a2528436.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论