我正在尝试将 toastr 添加到我的应用程序并收到错误“ReferenceError: toastr is not defined”
这是我的requirejs配置:
requirejs.config({
baseUrl: 'scripts/lib',
waitSeconds: 200,
paths: {
'jquery': 'jquery/jquery-1.10.2',
'toastr': 'jquery/toastr'
},
shim: {
toastr: ['jquery']
}
当我尝试将 toastr 添加为模块依赖项时,出现此错误。
我应该怎么做才能解决这个问题?
谢谢