GCP App Engine无法提供JavaScript之类的资源文件

时间:2018-09-21 07:26:55

标签: google-app-engine .net-core

我已使用app.yaml将我的dotnetcore 2.0应用托管在GCP App Engine上,如下所示。

runtime: aspnetcore
env: flex
manual_scaling:
  instances: 1
resources:
  cpu: 1
  memory_gb: 0.5
  disk_size_gb: 10  
endpoints_api_service:
  name:  ***********
  rollout_strategy: managed

我的API工作正常,但是当我尝试使用指向cshtml的资源加载wwwroot视图时,加载资源(例如.js,.css)时出现错误

{
 "code": 5,
 "message": "Method does not exist.",
 "details": [
  {
   "@type": "type.googleapis.com/google.rpc.DebugInfo",
   "stackEntries": [],
   "detail": "service_control"
  }
 ]
}

我在这里的目的是拥有一个可提供Web API和Angular6 UI SPA的dotnetcore应用。

0 个答案:

没有答案