gpt4 book ai didi

typescript - stencil-component-starter 中的 ion-label 组件没有被渲染

转载 作者:搜寻专家 更新时间:2023-10-30 20:59:41 25 4
gpt4 key购买 nike

我克隆了 stencil-component-starter来自:

https://github.com/ionic-team/stencil-component-starter

然后在文件上:my-component.tsx我有以下代码:

import { Component, Prop } from '@stencil/core';

@Component({
tag: 'my-component',
styleUrl: 'my-component.css',
shadow: true
})
export class MyComponent {

@Prop() first: string;
@Prop() last: string;
@Prop() minHeartRate: number;
@Prop() maxHeartRate: number;

render() {
return (
<div>
Athlete: {this.first} {this.last} - Heart Rate Range:
<ion-range mode="ios" dualKnobs={true} min={0} max={200} step={2} pin={true} snaps={true} value={{lower: this.minHeartRate, upper: this.maxHeartRate}}>
<ion-label range-left>0</ion-label>
<ion-label range-right>200</ion-label>
</ion-range>
</div>
);
}
}

如你所见:

https://github.com/napolev/stencil-ion-range/blob/master/src/components/my-component/my-component.tsx

[Before] 它被几乎正确渲染,但有两个问题 1 and 2 :
[现在] 它根本没有被渲染。因此,存在三个问题 1, 2 and 3 :

  1. <ion-label/>标记被忽略。

  2. 每个旋钮都可以移动到另一个旋钮之外(请忽略这一点,我认为这是新版本的目的)。

  3. 这是我刚刚检测到的新问题 (Current time: 2018-08-26 19:20) .就像 12 小时前(检查 repo 上的时间戳)存储库:https://github.com/napolev/stencil-ion-range/提交 12c14b75cca92f19af6c5ccae60091319578cec7正在几乎正确生成<ion-range/>上面的标签,问题 1 和 2 除外(检查下图)。但是现在,在全新安装此存储库后,它不再呈现您在下图中看到的内容。这很奇怪。完成该提交后,我检查了它是否在全新安装后呈现了该内容。

这是它之前渲染的内容,现在不再渲染了:

enter image description here

引用:

https://ionicframework.com/docs/api/components/range/Range/

关于如何解决这个问题有什么想法吗?

谢谢!

[编辑 1]

这是对下面 Aaron Saunders 评论的回应:

ion-label component inside the stencil-component-starter not getting rendered

Aaron,我添加了您建议的代码,您可以在此处看到:

https://github.com/napolev/stencil-ion-range/commit/d3471825131d3d329901c73d8c6803a609b27c3b#diff-34c2a6c626ee2612cd4f12b2c004a0b1L16

但是当运行代码时:$ npm start以下是渲染的内容:

enter image description here

您是否正确渲染了组件?

我删除了 node_modules目录并再次安装它们但没有成功。

你能试试我的存储库吗?

如您所见,我在官方提交之上仅完成了 2 次提交:

https://github.com/napolev/stencil-ion-range/commits/master

为了以防万一,这里是我用于主要工具的版本:

$ node -v
v8.11.2

$ npm -v
6.1.0

$ ionic -v
ionic CLI 4.1.1

[编辑 2]

此主题有一个并行讨论:

https://forum.ionicframework.com/t/ion-label-component-inside-the-stencil-component-starter-not-getting-rendered/139763

[编辑 3]

这是对下面 Alexander Staroselsky 评论的回应:

ion-label component inside the stencil-component-starter not getting rendered

Alexander,我尝试了您的建议并做了以下更改:

https://github.com/napolev/stencil-ion-range/commit/68fce2abe25536b657f9493beb1cc56e26828e4f

现在 <ion-range/>组件被渲染(这真的很好)但是渲染存在一些问题,如下图所示。 <ion-label/>组件的宽度很大。

enter image description here

关于如何解决这个问题有什么想法吗?

谢谢!

[编辑 4]

添加 Aaron Saunders 的建议就可以了:

<ion-item>
<ion-range
mode="ios"
dualKnobs={true}
min={0} max={200} step={2}
pin={true} snaps={true}
value={{ lower: this.minHeartRate, upper: this.maxHeartRate }}
>
<ion-label slot="start" style={{flex: 'none', margin: '0 30px 0 0'}}>0</ion-label>
<ion-label slot="end" style={{flex: 'none', padding:' 0 0 0 30px'}}>200</ion-label>
</ion-range>
</ion-item>

感谢 Alexander StaroselskyAaron Saunders 因为结合他们的建议我可以完成这项工作。

最佳答案

您需要在 stencil-component-starter 中显式 import '@ionic/core';组件或添加 CDN scripts/stylesindex.html。我记得有一次,工具包或 stencil-app-starter 专门在根元素中导入了早期版本的 @ionic/core beta 甚至是 alpha。

此外,根据 documentation ,您还需要使用 ion-item 包装 ion-range 以及使用 slot="start"slot ="end" 而不是 range-leftrange-right

import { Component, Prop } from '@stencil/core';
import '@ionic/core';

@Component({
tag: 'my-component',
styleUrl: 'my-component.css',
shadow: true
})
export class MyComponent {

@Prop() first: string;
@Prop() last: string;
@Prop() minHeartRate: number;
@Prop() maxHeartRate: number;

render() {
return (
<div>
Athlete: {this.first} {this.last} - Heart Rate Range:
<ion-item>
<ion-range mode="ios" dualKnobs={true} min={0} max={200} step={2} pin={true} snaps={true} value={{lower: this.minHeartRate, upper: this.maxHeartRate}}>
<ion-label slot="start">0</ion-label>
<ion-label slot="end">200</ion-label>
</ion-range>
</ion-item>
</div>
);
}
}

这将有助于确保注入(inject)样式并正确呈现组件。平心而论,当我尝试这样做时,大多数样式都通过了,但是开槽 ion-label 元素的定位肯定存在问题。肯定需要对样式进行一些调整,包括 flex grow/shrink/basis 以及 end slot 元素的定位/margin。在@ionic/core github 上提交样式问题可能是明智的。

希望对您有所帮助!

关于typescript - stencil-component-starter 中的 ion-label 组件没有被渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52024158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com