gpt4 book ai didi

javascript - Require.js 未捕获类型错误 : jqOAuth is not a function

转载 作者:行者123 更新时间:2023-11-28 07:00:24 24 4
gpt4 key购买 nike

我想使用jQuery OAuth我的应用程序中的库。

现在我正在尝试在 main.js 文件中初始化它。

我定义了这个库的路径及其依赖项 store.js :

requirejs.config({
paths: {
store: "../Scripts/store.min",
jqueryOAuth: "../Scripts/jquery.oauth"
}
});

我从 jQuery OAuth 页面中获取了如何进行初始化的示例:

define(["store", "jqueryOAuth"], function (store, jqOAuth) {
if (!store.enabled) {
alert("Store not enabled");
return;
}

var auth = new jqOAuth({ // <--- Uncaught TypeError: jqOAuth is not a function
events: {
login: function() {},
logout: function() {},
tokenExpiration: function() {}
}
});
});

当我打开网站时,控制台中出现错误:

未捕获的类型错误:jqOAuth 不是函数

但是如果你看一下jquery.oauth.js文件中,您会看到有一个名为 jqOAuth 的函数。

你知道我做错了什么吗?我对 javascript 很陌生,也许我错过了一些东西?

最佳答案

事实证明,我用同名的本地变量覆盖了全局 jqOAuth 函数。

这是工作代码:

define(["store", "jqueryOAuth"], function (store) {
if (!store.enabled) {
alert("Store not enabled");
return;
}

var auth = new jqOAuth({
events: {
login: function() {},
logout: function() {},
tokenExpiration: function() {}
}
});
});

关于javascript - Require.js 未捕获类型错误 : jqOAuth is not a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32190385/

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