Raspberry Pi에서 .Net Core MVC 만들기
3235 단어 RaspberryPi웹mvc.NETCoreC#
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/ 방문
Reference
이 문제에 관하여(Raspberry Pi에서 .Net Core MVC 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ekzemplaro/items/e6bd8d65ab46e0dbb6e8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)