如何将变量传递给Svelte中的插槽?

huangapple go评论59阅读模式
英文:

How to pass a variable to a slot in Svelte?

问题

I can help with the translation:

"我刚刚开始使用插槽,并希望在不使用存储(例如颜色、活动状态等)的情况下将变量传递给插槽,但尽管多次阅读教程,我无法使其正常工作。

我制作了一个REPL示例:将变量传递给插槽

理想情况下,我想从外部组件设置变量(即“#f00”),但也可以由具有插槽的组件设置(即“#0f0”)。

提前感谢您!"

英文:

I'm just getting started with slots and would like to pass variables to the slot without using stores (e.g. colors, active state, etc), but I can't get it to work, despite having read the tutorial several times.

I've made a REPL to illustrate: Passing variables to slots.

Ideally, I would like to set the variable from the outer component (i.e. "#f00"), but having it set by the component with the slot would be okay as well (i.e. "#0f0").

Thank you in advance!

Edit: Source:

<!-- Icon.svelte -->
<script>
  export let fillColor = "#00f";
</script>

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height=24 width=24
  ><path
    d="M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.60 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.13 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" fill={fillColor}/></svg>
<!-- IconWrapper.svelte -->
<script>
  export let fillColor = '#0f0';
</script>

<div>
  <slot fill={fillColor}/>
</div>
<!-- App.svelte -->
<script>
	import IconWrapper from "./IconWrapper.svelte"
	import Icon from "./Icon.svelte"
	export let fillColor = '#f00';
</script>

<IconWrapper {fillColor}>
  <Icon></Icon>
</IconWrapper>

答案1

得分: 4

以下是您要翻译的内容:

你已经快要完成了,我建议改变一下名称,因为如果一切都叫同样的名字,可能会让人感到困惑。

IconWrapperIcon 组件没问题(在这里将 fillColor 重命名为 fill):

<!-- IconWrapper.svelte -->
<script>
  export let fillColor = '#0f0';
</script>

<div>
  <slot fill={fillColor}/>
</div>
<!-- Icon.svelte -->
<script>
  export let fillColor = "#00f";
</script>
{fillColor}
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height=24 width=24>
  <path
    d="M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.60 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.13 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" fill={fillColor}/>
</svg>

现在,您可以使用 let: 语法从提供 slot 的组件中获取一个值,通过在组件本身上添加 let:,该变量将在该组件的范围内定义。

<!-- App.svelte -->
<script>
  import IconWrapper from "./IconWrapper.svelte"
  import Icon from "./Icon.svelte"
  const fillColor = '#f00';
</script>

<IconWrapper {fillColor} let:fill>
  <Icon fillColor={fill}></Icon>
</IconWrapper>
英文:

You are almost there, I would suggest to mix up names though because if everything is called the same it might get confusing.

The IconWrapper and Icon components are ok (renamed fillColor to fill in one place here)

&lt;-- IconWrapper.svelte --&gt;
&lt;script&gt;
  export let fillColor = &#39;#0f0&#39;;
&lt;/script&gt;

&lt;div&gt;
  &lt;slot fill={fillColor}/&gt;
&lt;/div&gt;
&lt;!-- Icon.svelte --&gt;
&lt;script&gt;
  export let fillColor = &quot;#00f&quot;;
&lt;/script&gt;
{fillColor}
&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 24 24&quot; height=24 width=24
  &gt;&lt;path
    d=&quot;M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.60 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.13 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z&quot; fill={fillColor}/&gt;&lt;/svg&gt;

Now you can use the let: syntax to get a value from the component providing the slot to the component using the slot, you do this by putting let: on the component itself, this variable will then be defined within the scope of that component.

&lt;!-- App.svelte --&gt;
&lt;script&gt;
  import IconWrapper from &quot;./IconWrapper.svelte&quot;
  import Icon from &quot;./Icon.svelte&quot;
  const fillColor = &#39;#f00&#39;;
&lt;/script&gt;

&lt;IconWrapper {fillColor} let:fill&gt;
  &lt;Icon fillColor={fill}&gt;&lt;/Icon&gt;
&lt;/IconWrapper&gt;

As you see here, I pass fillColor to the wrapper, which gives me fill back, that is then passed to Icon.

huangapple
  • 本文由 发表于 2023年4月17日 18:12:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/76034033.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定