0

我们在 Asp.net Mvc 应用程序中使用 footable。在 http 上运行时它工作正常。但是,当我们从 Azure 在 https 上运行相同的应用程序时,它会失败并出现错误:

(function ($, w, undefined) {
    if (w.footable === undefined || w.footable === null)
        throw new Error('Please check and make sure footable.js is included in the page and is loaded prior to this script.');

一些想法?捆绑包中的footable的最佳实践是什么,以及将其放置在_Layout-file中的什么位置?

4

1 回答 1

0

该错误似乎来自 FooTable 扩展之一(分页、过滤等)。该错误可能是由在 FooTable 核心脚本本身之前加载的这些扩展之一引起的。

您使用的是哪个版本的 FooTable?您似乎正在使用 V2?如果是这样,请尝试包含footable.all.min.js,因为它在单个文件中包含核心footable 和基本扩展

于 2015-12-09T11:12:31.830 回答