- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
堆栈:ReactJS 16.x、Typescript 2.8.1、create-react-app 项目。
在使用展开运算符将 props
从 TypeScript 类传递到 React 组件时,我遇到了类型错误。
仅当类定义了函数时才会发生错误。如果该类有一个函数表达式变量,则扩展运算符可以正常工作。我相信这与类中属性的枚举有关。因此,我使用装饰器将函数标记为不可枚举,但仍然出现相同的错误。下面是代码:
Message
是我试图传播到 React 组件中的类。
export class Message {
constructor() {
this.init2 = (msg: string) => {
this.msg = 'init2';
return this;
}
}
public msg: string;
// This works with spread operator
public init2: (msg: string) => Message;
// This will cause the spread operator to fail
public init(msg: string): Message {
this.msg = msg;
return this;
}
// Even with decorator to turn off enumeration, spread operator fails
@enumerable(false)
public initNoEnum(msg: string): Message {
this.msg = msg;
return this;
}
}
Prop 的 ReactJS 组件被定义为 Message
:
export class MessageComponent extends React.Component<Message, any>{
render() {
return (<div>{this.props.msg}</div>);
}
}
使用 MessageComponent
的渲染方法:
public render() {
const msg = new Message().init('hello world!');
return <MessageComponent {...msg} /> // The spread here fails
}
可枚举
装饰器函数:
export function enumerable(value: boolean): any {
return function (target: any, propertyKey: string, descriptor: PropertyDescriptor) {
descriptor.enumerable = value;
};
}
配置:
"compilerOptions": {
"outDir": "./build",
"module": "esnext",
"target": "es5",
"lib": [ "es6", "dom" ],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"experimentalDecorators": true
},
如果我注释掉 init
和 initNoEnum
并保留 init2
,则传播运算符起作用。使用 init
和 initNoEnum
时,传播运算符失败并显示类似消息:
Type '{ msg: string; init2: (msg: string) => Message; }' is not assignable to type 'IntrinsicAttributes & IntrinsicClassAttributes & Readonly<{ children?: ReactNod...'. Type '{ msg: string; init2: (msg: string) => Message; }' is not assignable to type 'Readonly'. Property 'init' is missing in type '{ msg: string; init2: (msg: string) => Message; }'.
我做错了什么?如何使传播运算符仅通过属性而不是函数进行枚举?
最佳答案
默认情况下,您不能使用扩展运算符仅获取非函数属性,因为函数是属性,但也许使用您的 tsconfig
魔法它应该可以工作,但是,您可以修改对象而是首先传递给传播运算符。
要在没有 tsconfig
魔法的情况下使用扩展语法仅获取非函数属性,我建议使用一个函数来过滤掉函数属性,然后像这样使用扩展运算符:
const filterOutFunctions = object => {
return Object.keys(object)
.filter(key => typeof(object[key]) !== 'function')
.reduce((filteredObj, currentItem) => {
filteredObj[currentItem] = object[currentItem]
return filteredObj
}, {})
}
const objectWithFunctions = {
aFunction() {},
aProperty: 'A good ol string'
}
// Now you can do spread operator stuff with a filtered version like so:
{...filterOutFunctions(objectWithFunctions)}
// returns: { aProperty: 'A good ol string' }
其工作方式是通过使用 .filter
迭代 object
的 keys
来过滤掉指向函数的键。然后,我们通过使用 .reduce
将它们分配给一个新的空对象来收集所有剩余的属性。
关于javascript - 如何使扩展运算符仅通过非函数属性进行枚举?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51165299/
你能比较一下属性吗 我想禁用文本框“txtName”。有两种方式 使用javascript,txtName.disabled = true 使用 ASP.NET, 哪种方法更好,为什么? 最佳答案 我
Count 属性 返回一个集合或 Dictionary 对象包含的项目数。只读。 object.Count object 可以是“应用于”列表中列出的任何集合或对
CompareMode 属性 设置并返回在 Dictionary 对象中比较字符串关键字的比较模式。 object.CompareMode[ = compare] 参数
Column 属性 只读属性,返回 TextStream 文件中当前字符位置的列号。 object.Column object 通常是 TextStream 对象的名称。
AvailableSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。 object.AvailableSpace object 应为 Drive 
Attributes 属性 设置或返回文件或文件夹的属性。可读写或只读(与属性有关)。 object.Attributes [= newattributes] 参数 object
AtEndOfStream 属性 如果文件指针位于 TextStream 文件末,则返回 True;否则如果不为只读则返回 False。 object.A
AtEndOfLine 属性 TextStream 文件中,如果文件指针指向行末标记,就返回 True;否则如果不是只读则返回 False。 object.AtEn
RootFolder 属性 返回一个 Folder 对象,表示指定驱动器的根文件夹。只读。 object.RootFolder object 应为 Dr
Path 属性 返回指定文件、文件夹或驱动器的路径。 object.Path object 应为 File、Folder 或 Drive 对象的名称。 说明 对于驱动器,路径不包含根目录。
ParentFolder 属性 返回指定文件或文件夹的父文件夹。只读。 object.ParentFolder object 应为 File 或 Folder 对象的名称。 说明 以下代码
Name 属性 设置或返回指定的文件或文件夹的名称。可读写。 object.Name [= newname] 参数 object 必选项。应为 File 或&
Line 属性 只读属性,返回 TextStream 文件中的当前行号。 object.Line object 通常是 TextStream 对象的名称。 说明 文件刚
Key 属性 在 Dictionary 对象中设置 key。 object.Key(key) = newkey 参数 object 必选项。通常是 Dictionary 
Item 属性 设置或返回 Dictionary 对象中指定的 key 对应的 item,或返回集合中基于指定的 key 的&
IsRootFolder 属性 如果指定的文件夹是根文件夹,返回 True;否则返回 False。 object.IsRootFolder object 应为&n
IsReady 属性 如果指定的驱动器就绪,返回 True;否则返回 False。 object.IsReady object 应为 Drive&nbs
FreeSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。只读。 object.FreeSpace object 应为 Drive 对象的名称。
FileSystem 属性 返回指定的驱动器使用的文件系统的类型。 object.FileSystem object 应为 Drive 对象的名称。 说明 可
Files 属性 返回由指定文件夹中所有 File 对象(包括隐藏文件和系统文件)组成的 Files 集合。 object.Files object&n
我是一名优秀的程序员,十分优秀!