JavaScript错误:Object(...)不是函数

时间:2018-07-22 17:10:54

标签: javascript javascript-objects typeerror

我有一个简单的例子: util.jsapp.js在同一目录中。

util.js

export function existy(x)
{
   return x !== null && x != undefined;
}

app.js

import {existy} from 'util';

var x = undefined;
if (!existy(x))
{
    console.log('x doesn't exist');
}

但是我遇到了TypeError:我在existy中使用app.js函数的那行上,Object(...)不是函数。是什么让它认为存在不是函数?

我该如何解决?谢谢!

1 个答案:

答案 0 :(得分:0)

您应该这样导入:

import {existy} from './util';