【问题标题】:.NET Core WebAPI VueJS template publish issue.NET Core WebAPI VueJS 模板发布问题
【发布时间】:2020-02-09 10:17:17
【问题描述】:

我正在试用here 找到的“VueJS with Asp.Net Core 3.1 Web API Template”,它在开发过程中运行非常顺利。但是,我想看看它是如何处理发布的,但我无法让它发挥作用。

运行发布到文件夹时,它不会将 clientapp/dist 文件夹移动到输出目录,这没关系,所以我想我会手动执行。所以我尝试使用以下路径将 dist 文件夹的内容移动到输出目录:

  • "/publish/clientapp/dist"
  • "/publish/dist"
  • "/publish/clientapp"

但上述方法似乎都不起作用,运行.dll文件时出现以下错误:

fail: Microsoft.AspNetCore.Server.Kestrel[13]
      Connection id "0HLTD93CRG52F", Request id "0HLTD93CRG52F:00000001": An unhandled exception was thrown by the application.
System.InvalidOperationException: The SPA default page middleware could not return the default page '/index.html' because it was not found, and no other middleware handled the request.
Your application is running in Production mode, so make sure it has been published, or that you have built your SPA manually. Alternatively you may wish to switch to the Development environment.

   at Microsoft.AspNetCore.SpaServices.SpaDefaultPageMiddleware.<>c__DisplayClass0_0.<Attach>b__1(HttpContext context, Func`1 next)
   at Microsoft.AspNetCore.Builder.UseExtensions.<>c__DisplayClass0_1.<Use>b__1(HttpContext context)
   at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.TryServeStaticFile(HttpContext context, String contentType, PathString subPath)
   at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context)
   at Microsoft.AspNetCore.Builder.UseExtensions.<>c__DisplayClass0_2.<Use>b__2()
   at Microsoft.AspNetCore.SpaServices.SpaDefaultPageMiddleware.<>c__DisplayClass0_0.<Attach>b__0(HttpContext context, Func`1 next)
   at Microsoft.AspNetCore.Builder.UseExtensions.<>c__DisplayClass0_1.<Use>b__1(HttpContext context)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.Invoke(HttpContext httpContext)
   at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)
   at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol.ProcessRequests[TContext](IHttpApplication`1 application)

这是我在 Startup.cs 中的“UseSpa”:

app.UseSpa(spa =>
        {
            if (env.IsDevelopment())
                spa.Options.SourcePath = "ClientApp";
            else
                spa.Options.SourcePath = "clientapp/dist";

            if (env.IsDevelopment())
            {
                spa.UseVueCli(npmScript: "serve");
            }

        });

使用上面的代码,我假设我的 dist 文件夹应该位于 /publish/clientapp/dist,我已经尝试过了,但即便如此,我还是得到了上面提到的错误。

我希望有人能指出我正确的方向 - 在此先感谢 :)

【问题讨论】:

    标签: c# asp.net-core asp.net-spa


    【解决方案1】:

    模板中似乎有一个错误:ClientApp 文件夹的名称是clientapp。但是,startup中的所有相关代码都将其视为ClientApp

    1. 模板没有配置为您构建 Vuejs 的任务。为此,请在您的 csproj 文件中添加一个任务:

        <PropertyGroup>
          <SpaRoot>clientapp\</SpaRoot>
          <DefaultItemExcludes>$(DefaultItemExcludes);$(SpaRoot)node_modules\**</DefaultItemExcludes>
        </PropertyGroup>
      
        <ItemGroup>
          <!-- Don't publish the SPA source files, but do show them in the project files list -->
          <Content Remove="$(SpaRoot)**" />
          <None Remove="$(SpaRoot)**" />
          <None Include="$(SpaRoot)**" Exclude="$(SpaRoot)node_modules\**" />
        </ItemGroup>
      
        <Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('$(SpaRoot)node_modules') ">
          <!-- Ensure Node.js is installed -->
          <Exec Command="node --version" ContinueOnError="true">
            <Output TaskParameter="ExitCode" PropertyName="ErrorCode" />
          </Exec>
          <Error Condition="'$(ErrorCode)' != '0'" Text="Node.js is required to build and run this project. To continue, please install Node.js from https://nodejs.org/, and then restart your command prompt or IDE." />
          <Message Importance="high" Text="Restoring dependencies using 'npm'. This may take several minutes..." />
          <Exec WorkingDirectory="$(SpaRoot)" Command="npm install" />
        </Target>
      
        <Target Name="PublishRunWebpack" AfterTargets="ComputeFilesToPublish">
          <!-- As part of publishing, ensure the JS resources are freshly built in production mode -->
          <Exec WorkingDirectory="$(SpaRoot)" Command="npm install" />
          <Exec WorkingDirectory="$(SpaRoot)" Command="npm run build" />
      
          <!-- Include the newly-built files in the publish output -->
          <ItemGroup>
            <DistFiles Include="$(SpaRoot)dist\**; $(SpaRoot)dist-server\**" />
            <DistFiles Include="$(SpaRoot)node_modules\**" Condition="'$(BuildServerSideRenderer)' == 'true'" />
            <ResolvedFileToPublish Include="@(DistFiles->'%(FullPath)')" Exclude="@(ResolvedFileToPublish)">
              <RelativePath>%(DistFiles.Identity)</RelativePath>
              <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
              <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
            </ResolvedFileToPublish>
          </ItemGroup>
        </Target>
      
    2. 上面的代码大部分是从标准的 ASP.NET Core Angular 模板复制而来的。发布后,它将在 clientapp/dist 文件夹下构建您的 Vuejs。为了让 ASP.NET Core 知道这一点,请按如下方式配置您的 SpaStaticFiles 服务:

      services.AddSpaStaticFiles(配置 => { configuration.RootPath = "ClientApp"; configuration.RootPath = "clientapp/dist"; }
    3. 最后,在生产环境中你不需要源路径,因为它是自动构建的:

      app.UseSpa(水疗 => { if (env.IsDevelopment()) spa.Options.SourcePath = "ClientApp"; spa.Options.SourcePath = "clientapp"; 否则 spa.Options.SourcePath = "dist"

    【讨论】:

    • 嗨 itminus,感谢您的帮助 - 这解决了我的问题 :)
    • @itminus 你能扩展#3吗?如果从 /wwwroot 提供开发服务,从 /wwwroot/dist 提供生产服务,那么 UseSpa 是什么样的?
    • @JayBorseth UseSpa 是一个在开发中很有用的中间件。主要是调用内部的 AngularCliServer/React Dev Server/Vue Dev Server 并代理对 node.js 服务器的请求。设置 SourcePath="dist" 是没有意义的。
    • @itminus 非常感谢您的回答,它可以节省一天的时间!
    猜你喜欢
    • 2018-06-05
    • 1970-01-01
    • 2022-01-24
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-12-11
    • 1970-01-01
    • 2021-03-13
    相关资源
    最近更新 更多