语法错误:意外的标记*

Rem*_*mco 5 javascript import node.js

我想从 BodyPix 模块导入代码,但我不断收到以下错误消息:

import * as bodyPix from '@tensorflow-models/body-pix';
       ^

SyntaxError: Unexpected token *
    at Module._compile (internal/modules/cjs/loader.js:718:23)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:785:10)
    at Module.load (internal/modules/cjs/loader.js:641:32)
    at Function.Module._load (internal/modules/cjs/loader.js:556:12)
    at Function.Module.runMain (internal/modules/cjs/loader.js:837:10)
    at internal/main/run_main_module.js:17:11
Run Code Online (Sandbox Code Playgroud)

我尝试了不同的导入方式,但似乎没有任何效果。

mbo*_*jko 4

CommonJS - 样式导入应该有效:

const bodyPix = require('@tensorflow-models/body-pix');
Run Code Online (Sandbox Code Playgroud)