91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ASP.NET 5系列教程 (四):向視圖中添加服務和發布應用到公有云

發布時間:2020-07-30 21:04:30 來源:網絡 閱讀:798 作者:powertoolsteam 欄目:編程語言

向視圖中添加服務

現在,ASP.NET MVC 6 支持注入類到視圖中,和VC類不同的是,對類是公開的、非嵌套或非抽象并沒有限制。在這個例子中,我們創建了一個簡單的類,用于統計×××事件、已完成事件和平均優先級的服務。

1. 添加命名為Services 的文件夾,在該文件夾下添加名稱為 StatisticsService.cs 的類:

StatisticsService 類代碼設計如下:

using System.Linq;
using System.Threading.Tasks;
using TodoList.Models;

namespace TodoList.Services
{
  public class StatisticsService
  {
    private readonly ApplicationDbContext db;

    public StatisticsService(ApplicationDbContext context)
    {
      db = context;
    }

    public async Task<int> GetCount()
    {
      return await Task.FromResult(db.TodoItems.Count());
    }

    public async Task<int> GetCompletedCount()
    {
      return await Task.FromResult(
          db.TodoItems.Count(x => x.IsDone == true));
    }

    public async Task<double> GetAveragePriority()
    {
      return await Task.FromResult(
          db.TodoItems.Average(x =>
                     (double?)x.Priority) ?? 0.0);
    }
  }
}
2. 更新Index 視圖注入×××事項數據,在文件頂部添加以下代碼聲明注入的服務:

@inject TodoList.Services.StatisticsService Statistics

添加標記調用 StatisticsService:

<div>@Html.ActionLink("Create New Todo", "Create", "Todo") </div>
    </div>
     
    <div class="col-md-4">
        @await Component.InvokeAsync("PriorityList", 4, true)

      <h4>Stats</h4>
      <ul>
        <li>Items: @await Statistics.GetCount()</li>
        <li>Completed:@await Statistics.GetCompletedCount()</li>
        <li>Average Priority:@await Statistics.GetAveragePriority()</li>
      </ul>
    </div>
</div>

 

以下是該文件的完整代碼:

@inject TodoList.Services.StatisticsService Statistics
@{
    ViewBag.Title = "Home Page";
}

<div class="jumbotron">
    <h2>ASP.NET vNext</h2>
</div>

<div class="row">
    <div class="col-md-4">
        @if (Model.Count == 0)
        {
            <h5>No Todo Items</h5>
        }
        else
        {
            <table>
                <tr><th>TODO</th><th></th></tr>
                @foreach (var todo in Model)
                {
                    <tr>
                        <td>@todo.Title </td>
                        <td>
                            @Html.ActionLink("Details", "Details", "Todo", new { id = todo.Id }) |
                            @Html.ActionLink("Edit", "Edit", "Todo", new { id = todo.Id }) |
                            @Html.ActionLink("Delete", "Delete", "Todo", new { id = todo.Id })
                        </td>
                    </tr>
                }
            </table>
                            }
        <div>@Html.ActionLink("Create New Todo", "Create", "Todo") </div>
    </div>
     
    <div class="col-md-4">
        @await Component.InvokeAsync("PriorityList", 4, true)

      <h4>Stats</h4>
      <ul>
        <li>Items: @await Statistics.GetCount()</li>
        <li>Completed:@await Statistics.GetCompletedCount()</li>
        <li>Average Priority:@await Statistics.GetAveragePriority()</li>
      </ul>
    </div>
</div>

 

3. 在 Startup.cs 文件中注冊StatisticsService 類:
// This method gets called by the runtime.
public void ConfigureServices(IServiceCollection services)
{
  // Add EF services to the services container.
  services.AddEntityFramework(Configuration)
      .AddSqlServer()
      .AddDbContext<ApplicationDbContext>();

  // Add Identity services to the services container.
  services.AddDefaultIdentity<ApplicationDbContext, ApplicationUser, IdentityRole>(Configuration);

  // Add MVC services to the services container.
  services.AddMvc();

  services.AddTransient<TodoList.Services.StatisticsService>();
}

以下是效果圖:

ASP.NET 5系列教程 (四):向視圖中添加服務和發布應用到公有云

發布應用到公有

發布應用到公有云,你需要申請 Microsoft Azure 帳號,如果沒有,可以通過以下鏈接注冊:activate your MSDN subscriber benefits 或 sign up for a free trial.

1. 右鍵點擊 TodoList 工程> 發布

ASP.NET 5系列教程 (四):向視圖中添加服務和發布應用到公有云

2. 在發布對話框中,點擊 Microsoft Azure Websites 并登陸公有云帳號。

ASP.NET 5系列教程 (四):向視圖中添加服務和發布應用到公有云

3. 點擊 New。

ASP.NET 5系列教程 (四):向視圖中添加服務和發布應用到公有云

4. 輸入site name 和region。如果你之前沒有創建過數據服務器,需要新建,否則可以使用原有的數據庫服務器。

ASP.NET 5系列教程 (四):向視圖中添加服務和發布應用到公有云
數據庫服務器是一個寶貴的資源。最好使用現有服務器進行測試和開發。然而由于沒有密碼校驗機制,密碼輸入錯誤時不會有錯誤提示,只有在應用實際訪問數據庫時才會報錯。

ASP.NET 5系列教程 (四):向視圖中添加服務和發布應用到公有云

5. 在Connection 標簽中點擊> Next。

ASP.NET 5系列教程 (四):向視圖中添加服務和發布應用到公有云

6. 在Settings 標簽中,選擇 KRE 版本。

ASP.NET 5系列教程 (四):向視圖中添加服務和發布應用到公有云

7. 點擊 Publish。

 

8. 好了,至此你的應用就發布到公有云了,以下是效果圖。

ASP.NET 5系列教程 (四):向視圖中添加服務和發布應用到公有云

原文鏈接:http://www.asp.net/vnext/overview/aspnet-vnext/vc#inj

 

系列文章目錄:

  • ASP.NET 5系列教程 (一):領讀新特性

  • ASP.NET 5系列教程 (二):Hello World

  • ASP.NET 5系列教程 (三):view components介紹


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

友谊县| 百色市| 盐津县| 凤翔县| 临夏市| 太康县| 连山| 台北市| 漳平市| 汽车| 孟津县| 方正县| 金堂县| 永平县| 邢台市| 新丰县| 巴南区| 安仁县| 高陵县| 高台县| 布拖县| 汝南县| 通州市| 晋江市| 诸城市| 华蓥市| 周口市| 桐庐县| 泽普县| 衡东县| 浮山县| 砚山县| 饶河县| 崇左市| 阿拉善盟| 尼木县| 襄汾县| 化州市| 安多县| 富锦市| 怀宁县|