Raspberry Pi에서 .Net Core MVC 만들기

프로젝트 만들기
mkdir Mvc01
cd Mvc01
dotnet new mvc
$ dotnet new mvc
The template "ASP.NET Core Web App (Model-View-Controller)" was created successfully.
This template contains technologies from parties other than Microsoft, see https://aka.ms/aspnetcore/3.0-third-party-notices for details.

Processing post-creation actions...
Running 'dotnet restore' on /home/uchida/tmp/Mvc01/Mvc01.csproj...
  /home/uchida/tmp/Mvc01/Mvc01.csproj の復元が 504.67 ms で完了しました。

Restore succeeded.

다음 두 파일을 수정합니다.

1) localhost 이외에서도 액세스할 수 있도록 합니다.

appsettings.Development.json
{
        "urls": "http://*:5000",
  "Logging": {
    "LogLevel": {
      "Default": "Debug",
      "System": "Information",
      "Microsoft": "Information"
    }
  }
}

2) 표시에 일본어를 넣어 봅니다.

Views/Home/Index.cshtml
{
    ViewData["Title"] = "Home Page";
}

<div class="text-center">
    <h1 class="display-4">Welcome</h1>
    <p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
        <p> Hello Everybody!</p>
        <p> こんにちは</p>
</div>

컴파일 및 실행
dotnet run

브라우저에서 http://host:5000/ 방문

좋은 웹페이지 즐겨찾기