如何启动 Reactjs.Net 到 IIS

How to launch Reactjs.Net to IIS

我正在使用 ASP.net MVC 5 和 ReactJS.net。它在开发模式下工作正常,但当我将它启动到 IIS 时我无法对工作做出反应。必须从 DEV 更改为 Release 才能使其正确编译?应该在 bundle.configweb.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;
}

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