1

我将 ASP.net MVC 5 与 ReactJS.net 一起使用。它在开发模式下工作正常,但是当我将它启动到 IIS 时我无法对工作做出反应。必须从 DEV 更改为 Release 以使其正确编译?是否应该在bundle.configor中添加一些东西web.config

这是我的bundle.config样子

public static void RegisterBundles(BundleCollection bundles)
{
    bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
                "~/Scripts/jquery-{version}.js"));

    bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
                "~/Scripts/jquery.validate*"));

    bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
    "~/Scripts/jquery-ui-{version}.js"));

    // Use the development version of Modernizr to develop with and learn from. Then, when you're
    // ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
    bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
                "~/Scripts/modernizr-*"));

    bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
              "~/Scripts/bootstrap.js",
              "~/Scripts/jasny-bootstrap.js",
              "~/Scripts/respond.js",
              "~/Scripts/bootbox.js",
              "~/Scripts/bootstrap-multiselect.js"));

    bundles.Add(new ScriptBundle("~/bundles/inputanimations").Include(
              "~/Scripts/app/elements/textInputAnimations.js"));

    bundles.Add(new StyleBundle("~/Content/css").Include(
              "~/Content/bootstrap.css",
              "~/Content/jasny-bootstrap.css",
              "~/Content/font-awesome.css",
              "~/Content/site.css",
              "~/Content/textbox.css",
              "~/Content/Scheduler.css",
              "~/Content/bootstrap-multiselect.css",
              "~/Content/dhtmlxgantt.css",
              "~/Content/dhtmlx.css"));

    bundles.Add(new StyleBundle("~/Content/themes/base/jqueryuicss").Include(
              "~/Content/themes/base/all.css",
              "~/Content/themes/base/base.css",
              "~/Content/themes/base/theme.css"));

    bundles.Add(new ScriptBundle("~/bundles/dxhtmlgantt").Include(
                    "~/Scripts/dhtmlxgantt.js",
                    "~/Scripts/ext/dhtmlxgantt_smart_rendering.js",
                    "~/Scripts/app/ganttChartPropertyInitializer.js"
                ));

    bundles.Add(new ScriptBundle("~/bundles/reactdependencies").Include(
                    "~/Scripts/react.js",
                    "~/Scripts/react-dom.js",
                    "~/Scripts/remarkable.js"
                ));

    bundles.Add(new BabelBundle("~/bundles/reactganttcomponents").Include(
                "~/Scripts/app/components/gantt/ganttFilter.jsx",
                "~/Scripts/app/components/gantt/InfoPanel.jsx",
                "~/Scripts/app/components/gantt/index.jsx"
                ));

    bundles.Add(new ScriptBundle("~/bundles/dxhtmlganttservices").Include(
        "~/Scripts/app/taskManager.js",
        "~/Scripts/app/GanttChartService.js",
        "~/Scripts/app/ganttChartStateManagerService.js",
        "~/Scripts/app/GanttFilter.js",
        "~/Scripts/app/infoPanelService.js",
        "~/Scripts/app/ganttToolbarControlInitializaer.js"
    ));

    bundles.Add(new BabelBundle("~/bundles/reacttoolbarcomponents").Include(
    "~/Scripts/app/components/gantt/timelineScale.jsx",
    "~/Scripts/app/components/gantt/newProject.jsx",
    "~/Scripts/app/components/gantt/newSubProject.jsx",
    "~/Scripts/app/components/gantt/newActivity.jsx",
    "~/Scripts/app/components/gantt/updateActivity.jsx"
    ));


    bundles.Add(new ScriptBundle("~/bundles/dxhtmlsuite").Include(
        "~/Scripts/dhtmlx.js"));

     BundleTable.EnableOptimizations = true;
}
4

1 回答 1

1

经过数小时的搜索,我发现当我发布应用程序时,我的所有 JavaScript 文件都没有被打包。
我的脚本文件夹里面是空的。我不得不删除所有*.jsx文件,然后重新创建它们。

于 2017-02-24T14:15:08.483 回答