77

我想这样定义jsx:

<table style={{'--length': array.lenght}}>
   <tbody>
      <tr>{array}</tr>
   </tbody>
</table>

我在 CSS 中使用 --length,我也有具有 --count 的单元格,它使用 CSS 伪选择器(使用计数器 hack)显示计数。

但打字稿抛出错误:

TS2326: Types of property 'style' are incompatible.
  Type '{ '--length': number; }' is not assignable to type 'CSSProperties'.
    Object literal may only specify known properties, and ''--length'' does not exist in type 'CSSProperties'.

是否可以更改样式属性的类型以接受 CSS 变量(自定义属性),或者有没有办法强制任何样式对象?

4

6 回答 6

130

像这样:

render(){
  var style = { "--my-css-var": 10 } as React.CSSProperties;
  return <div style={style}>...</div>
}
于 2019-01-10T11:50:00.557 回答
35

如果你去定义CSSProperties,你会看到:

export interface CSSProperties extends CSS.Properties<string | number> {
    /**
     * The index signature was removed to enable closed typing for style
     * using CSSType. You're able to use type assertion or module augmentation
     * to add properties or an index signature of your own.
     *
     * For examples and more information, visit:
     * https://github.com/frenic/csstype#what-should-i-do-when-i-get-type-errors
     */
}

该链接提供了如何通过增加Propertiesin的定义csstype或将属性名称强制转换为来解决类型错误的示例any

于 2018-08-25T00:50:04.167 回答
23

您可以向变量添加类型断言。IE {['--css-variable' as any]: value }

<table style={{['--length' as any]: array.lenght}}>
   <tbody>
      <tr>{array}</tr>
   </tbody>
</table>
于 2019-05-31T14:50:54.433 回答
18

将to 转换styleany破坏了使用 TypeScript 的全部目的,因此我建议React.CSSProperties使用您的自定义属性集进行扩展:

import React, {CSSProperties} from 'react';

export interface MyCustomCSS extends CSSProperties {
  '--length': number;
}

通过扩展React.CSSProperties,您将保持 TypeScript 的属性检查有效,并且您将被允许使用您的自定义--length属性。

使用MyCustomCSS看起来像这样:

const MyComponent: React.FC = (): JSX.Element => {
  return (
    <input
      style={
        {
          '--length': 300,
        } as MyCustomCSS
      }
    />
  );
};
于 2021-01-29T17:49:34.653 回答
7

您可以简单地使用字符串模板将此模块声明合并放在文件顶部或任何 .d.ts 文件中,然后您将能够使用任何 CSS 变量,只要它以“--”开头,即字符串或数字

import 'react';

declare module 'react' {
    interface CSSProperties {
        [key: `--${string}`]: string | number
    }
}

例如

<div style={{ "--value": percentage }} />
于 2021-12-17T19:38:14.073 回答
3
import "react";

type CustomProp = { [key in `--${string}`]: string };
declare module "react" {
  export interface CSSProperties extends CustomProp {}
}

把它放在你的 global.d.ts 文件中

于 2021-09-27T11:45:12.337 回答