我在关注The index is outside the matrix limits.
jQuery插件的this教程的同时向bundleConfig添加了一个包时遇到了fullCalendar
错误
这些是捆绑。由于版本较新,文件与教程中的文件略有不同。 注意:我在收到错误后也尝试了旧版本
//Calendar css
bundles.Add(new StyleBundle("~/Content/fullcalendarcss").Include(
"~/Content/themes/base/jquery.ui.all.css",
"~/Content/fullcalendar.css"));
//Calendar script
bundles.Add(new StyleBundle("~/bundles/fullcalendarjs").Include(
"~/Scripts/jquery-ui-1.8.11.min.js",
"~/Scripts/moment.min.js",
"~/Scripts/fullcalendar.min.js"));
当谷歌搜索错误的修复程序时,我遇到了this stackoverflow页面,其中修复程序是更新程序包。所以我做了并且得到了以下错误:
Cannot find *projectname* name 'Record'
& Cannot find *projectname* name 'undefined'
文件内的index.d.ts
。
我很困惑,我无法找到Cannot find *projectname* name 'Record'
&的解决方案。 Cannot find *projectname* name 'undefined'
个错误。
我还试图简单地删除出错的行:[name: string]: (BaseModifier & Record<string, any>) | undefined;
但是这只给了我一个System.OutOfMemoryException
。
有人知道我该怎么做才能解决这个问题吗?
谢天谢地。
答案 0 :(得分:4)
这是答案。您需要将Typescript更新到最新版本。