0

大家好,当我backticks在 hooks 部分使用时遇到问题useTable

例如,在下面的代码中,我声明randomVarBT给我一个错误。

    (hooks) => {
      hooks.visibleColumns.push((columns) => [
        ...columns,
        {
          id: 'view',
          groupByBoundary: true,
          Header: () => (
            <div>
              View
            </div>
          ),
          Cell: ({ row }) => {
            const randomVarBT = `x`;
            return (
              <Button myval={randomVarBT} />
            );
          },
        },
      ]);
    },

我收到以下错误。如果我使用""而不是反引号,则不会出现以下错误。

linting /home/LOCATION_TO_FILE/Filename.js:87 时无法读取 null 的属性“值”

4

0 回答 0