Unexpected token *

原文链接: https://yq.aliyun.com/articles/683050

Env:node v10.5.0


Error:


Code:


import * as tf from '@tensorflow/tfjs';

Solution:


const tf = require('@tensorflow/tfjs');

Reason:

该版本node只支持部分es6的语法,对于import这种就不支持,需要改为es5的语法


Other:

这也解决了刚入行时遇到的一个问题:当时我问同事为什么有的地方使用require("")而有的地方引用不了?原来是语法的原因。问这个问题的根本原因还是对es5和es6的语法不了解

你可能感兴趣的:(Unexpected token *)