gpt4 book ai didi

javascript - AMD 模块 Javascript : Module Loader Error

转载 作者:行者123 更新时间:2023-11-30 16:03:43 26 4
gpt4 key购买 nike

我创建了这个模块:

define(function(){

function isEmpty(stValue)
{
return false;
}

function inArray(stValue, arr)
{
return false;
}

return
{
isEmpty : isEmpty,
inArray : inArray //Error here
};
});

但是我有一个错误:inArray 行上的模块加载器错误:inArray。我的模块正确吗?

最佳答案

您将获得自动分号插入。您实际上正在返回未定义。

define(function(){

function isEmpty(stValue)
{
return false;
}

function inArray(stValue, arr)
{
return false;
}

return { // correct here
isEmpty : isEmpty,
inArray : inArray //Error here
};
});

关于javascript - AMD 模块 Javascript : Module Loader Error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37330759/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com