博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一套解决方案,多个项目
阅读量:6763 次
发布时间:2019-06-26

本文共 1360 字,大约阅读时间需要 4 分钟。

422101-20170607132347856-1437743078.png

控制器

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using SportsStore.Domain.Abstract;using SportsStore.Domain.Entities;namespace SportsStore.WebUI.Controllers{    public class ProductController : Controller    {        private IProductRepository repository;        public ProductController(IProductRepository productRepository)        {            this.repository = productRepository;        }        public ViewResult List()        {            return View(repository.Products);        }    }}

视图层

@using SportsStore.Domain.Entities@model IEnumerable
@{ ViewBag.Title = "Products";}@foreach (var p in Model){

@p.Name

@p.Description

@p.Price.ToString("c")

}

修改默认路由

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using System.Web.Routing;namespace SportsStore.WebUI{    public class RouteConfig    {        public static void RegisterRoutes(RouteCollection routes)        {            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");            routes.MapRoute(                name: "Default",                url: "{controller}/{action}/{id}",                defaults: new { controller = "Product", action = "List", id = UrlParameter.Optional }            );        }    }}

操蛋玩意,不懂。

转载地址:http://erfeo.baihongyu.com/

你可能感兴趣的文章
项目总结01:JSP mysql SpringMvc下中国省市县三级联动下拉框
查看>>
Hibernate一对多配置
查看>>
迁移学习(训练数据少的可怜时的办法)
查看>>
Android.mk和Application.mk基本内容
查看>>
安装程序无法复制一个或多个文件。特定错误码是0x4b8。
查看>>
第一次作业
查看>>
PHP
查看>>
如何设计出色的设计让你的简历脱颖而出?
查看>>
jQuery获取所有父级元素及同级元素及子元素的方法
查看>>
使用AForge录制视频
查看>>
this解惑
查看>>
嵌入式第八次
查看>>
设计模式学习之一:设计模式的设计原则
查看>>
Codeforces 798A - Mike and palindrome
查看>>
算法笔记--拓扑排序
查看>>
Chapter 6、字符串(二)(1st,Mar.)
查看>>
4-3 求链式表的表长 (10分)
查看>>
[BZOJ 1491][NOI2007]社交网络(Floyd)
查看>>
libtool failed with exit code 1
查看>>
# 学号 2017-2018-20172309 《程序设计与数据结构》实验1报告
查看>>