我有以下项目:
https://github.com/napolev/stencil-cannot-find-name
其中包含以下两个文件:
custom-container.tsx
import { Component, Element, State } from '@stencil/core';
@Component({
tag: 'custom-container',
styleUrl: 'custom-container.scss',
})
export class WebComponent {
@Element() el!: HTMLStencilElement;
@State() label: String = '<empty>';
componentDidLoad() {
document.querySelector('.button_get_anchor').addEventListener('click', () => {
let position = '<unset>';
position = this.el.querySelector('custom-details').getDefaultKnobEPosition();
this.label = position;
});
}
render() {
return [
<div class="label">{this.label}</div>,
<custom-details></custom-details>,
<div>
<button class="button_get_anchor">Get Anchor</button>
</div>
];
}
}
custom-details.tsx
import { Component, Method } from '@stencil/core';
@Component({
tag: 'custom-details',
styleUrl: 'custom-details.scss',
})
export class WebComponent {
render() {
return [
<div class="details">This is the "custom-details"</div>
];
}
@Method()
sayHelloWorldOnConsole() {
console.log('Hello World!');
}
//*
@Method()
getDefaultKnobEPosition(): Anchor {
return Anchor.Left;
}
//*/
}
export enum Anchor {
Left = 'left',
Center = 'center',
Right = 'right',
}
我的问题是:当我运行时:
$ npm start --es5
我收到以下错误:
[ ERROR ] TypeScript: ./stencil-cannot-find-name/src/components.d.ts:66:39
Cannot find name 'Anchor'.
L65: interface CustomDetails {
L66: 'getDefaultKnobEPosition': () => Anchor;
L67: 'sayHelloWorldOnConsole': () => void;
[21:56.0] dev server: http://localhost:3333/
[21:56.0] build failed, watching for changes... in
15.59 s
如下图所示:
而且,甚至在使用npm
进行编译之前,在Visual Studio Code
上,我也收到有关该问题的通知,如下图所示:
以下是引起问题的行:
https://github.com/napolev/stencil-cannot-find-name/blob/master/src/components.d.ts#L66
上面的文件是auto-generated
,因此我无法对其进行修改以解决此问题。
关于如何解决此问题的任何想法?
谢谢!
答案 0 :(得分:2)
将Anchor
放入其自己的文件即可解决构建问题:
/src/components/custom-details/Anchor.ts
export enum Anchor {
Left = 'left',
Center = 'center',
Right = 'right',
}
/src/components/custom-details/custom-details.tsx
import { Component, Method } from '@stencil/core';
import { Anchor } from './Anchor';
@Component({
tag: 'custom-details',
styleUrl: 'custom-details.scss',
})
export class WebComponent {
render() {
return [
<div class="details">This is the "custom-details"</div>
];
}
@Method()
sayHelloWorldOnConsole() {
console.log('Hello World!');
}
//*
@Method()
getDefaultKnobEPosition(): Anchor {
return Anchor.Left;
}
//*/
}
答案 1 :(得分:0)
如果该文件是自动生成的,那么您基本上就搞砸了。 components.d.ts
文件可以进行类型检查的唯一方法是,是否可以通过导入文件来访问Anchor
import {Anchor} from './custom-details';
您可以通过将Anchor注入全局范围来使其变为TypeCheck,从而使其对您的编译上下文中的所有文件可见
custom-details.tsx
export class WebComponent {
// ....
}
declare global {
enum Anchor {
Left = 'left',
Center = 'center',
Right = 'right'
}
}
(<{Anchor: typeof Anchor}>window.Stencil).Anchor = {
Left = 'left',
Center = 'center',
Right = 'right'
};
但是您真的很不想这样做!
这会污染类型的全局名称空间,并且更糟糕的是会污染其值!
提交错误报告。