- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图让一个方法根据作为参数给出的字符串返回特定类型。这是我的:
interface Base {
type: 'a' | 'b';
}
interface MyA extends Base {
type: 'a';
nameA: string;
}
interface MyB extends Base {
type: 'b';
nameB: string;
}
interface Mappings {
a: MyA;
b: MyB;
}
const testMethod = <K extends keyof Mappings>(
type: K
): Mappings[K][] => {
const values: Mappings[K][] = [];
if(type === 'a') {
values.push({
type: 'a',
nameA: 'My name a'
});
}
else if(type === 'b') {
values.push({
type: 'b',
nameA: 'My name b'
});
}
return values;
}
因此,如果我运行 testMethod('a')
,它的返回类型将是 MyA[]
,当我使用 testMethod('b')
它将返回 MyB[]
。但无论我做什么,我都无法让它发挥作用。错误总是:
Argument of type 'MyA' is not assignable to parameter of type'Mappings[K]'. Type 'MyA' is not assignable to type 'never'.The intersection 'MyA & MyB' was reduced to 'never' because property 'type' has conflicting types in some constituents.
我认为数组可能是问题所在,但返回 Mappings[K]
类型的变量也有同样的问题。 Here是 Playground 链接。我过去做过类似的事情 this一个根据作为参数给出的字符串修改函数的参数,但在这里我完全迷路了。
如果我能阅读任何指南或 typescript 资源,我们将不胜感激!
最佳答案
奇怪的是,一旦我指定映射扩展 Record<string, MyA | MyB>
,这对我就起作用了.我删除了共同祖先 Base,因为它似乎没有帮助。
interface MyA {
type: 'a';
nameA: string;
}
interface MyB {
type: 'b';
nameB: string;
}
interface Mappings extends Record<string, MyA | MyB> {
a: MyA;
b: MyB;
}
// same as above
const arrayOfMyA = testMethod('a'); // typed as MyA[]
const arrayOfMyB = testMethod('b'); // typed as MyB[]
我没有直观的解释,除了显式联合是让 TypeScript 相信 'a' | 'b'
的唯一方法。 ( keyof Mappings
) 详尽地导致 MyA | MyB
...尽管Mappings[keyof Mappings]
正确结果为 MyA | MyB
改变之前和之后!这可能是一个 TypeScript 错误,或者至少是一个改进的机会。
type MappingResults = Mappings[keyof Mappings];
// typed as MyA | MyB, regardless of whether
// Mappings extends Record<string, MyA | MyB>!
关于typescript - 某些成分中的冲突类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68749867/
我有一些带有反应组件抽象的外部 UI,我想从试剂中重用它们,有没有什么方法可以通过从 clojurescript 传递数据来直接渲染预定义的 react 组件。我是 clojurescript 初学者
我刚刚构建了一个库(Material Components库)from source并将本地Maven存储库添加到了我的项目中。现在,我可以通过将Log调用添加到库的本地源中来成功地进行一些外行调试。
我正在尝试测试呈现 grommet 的组件菜单 组件。索环 Menu 组件将绝对定位的菜单呈现到文档的顶层,作为子级插入到 body 中。因此它呈现在包装器的范围之外。我可以使用 document.b
如何创建一个凹形的 SKPhysicsBody? 我的猜测是创建一个由多个凸体组成的复合节点。我可以用任何其他方式“粘贴”它们,从而在它们之间创建 SKPhysicsJointFixed 吗? 最佳答
我正在开发一个食谱应用程序来帮助我妻子培养她的蛋糕爱好。这个想法是创建一个食谱数据库来保存她所有的蛋糕食谱。 每个食谱都有多种成分。每种成分都会有测量值(克、毫升、茶匙等),然后是数量。 我了解如何创
我正在使用 sklearn's PCA用于对大量图像进行降维。安装 PCA 后,我想看看组件的外观。 可以通过查看 components_ 属性来做到这一点。没有意识到这是可用的,我做了其他事情: e
我是一名优秀的程序员,十分优秀!