- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 MVC 4 创建游戏。有一个犯罪功能,但我无法解决。我已经尝试了很多东西,但由于我是 MVC4 的新手,所以我无法弄明白。
我创建了一个单选按钮列表,每个不同的选项应该给出不同的结果。这是到目前为止的代码:
Controller :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using FiveGangs.Models;
namespace FiveGangs.Controllers.Game {
[Authorize]
public class CrimesController : Controller {
//
// GET: /Crimes/
[HttpGet]
public ActionResult Index() {
return View();
}
//
// POST: /Crimes/
[HttpPost]
public ActionResult Index(LocalCrimeModel.Crime crimeType) {
//1 is de beste crime, 10 de slechste
ViewBag.Message = "You commited the crime!";
var db = new FGEntities();
var g = db.UserGangster.FirstOrDefault(p => p.UserProfile.UserName == User.Identity.Name);
g.GansterStatistic.CrimesSuccess++;
g.Experience += 1000;
g.Cash += 100;
db.SaveChanges();
return View();
}
}
}
型号:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace FiveGangs.Models
{
public class LocalCrimeModel
{
public enum Crime
{
Crime01 = 1,
Crime02 = 2,
Crime03 = 3,
Crime04 = 4,
Crime05 = 5,
Crime06 = 6,
Crime07 = 7,
Crime08 = 8,
Crime09 = 9,
Crime10 = 10,
}
public Crime SelectedCrime { get; set; }
}
}
查看:
@using FiveGangs.Models
@model FiveGangs.Models.LocalCrimeModel
<!DOCTYPE html>
<html>
<head>
<title>Crimes</title>
</head>
<body>
<div>
<h2>Crimes</h2>
@if (ViewBag.Message != null) {
<p class="warning">@ViewBag.Message</p>
}
@using (Html.BeginForm("Index")) {
@Html.RadioButton("crimetype", LocalCrimeModel.Crime.Crime01, false)@: Rob the local bank<br>
@Html.RadioButton("crimeType", LocalCrimeModel.Crime.Crime02, false)@: Rob the local casino<br>
@Html.RadioButton("crimeType", LocalCrimeModel.Crime.Crime03, false)@: Rob a jewelry store<br>
@Html.RadioButton("crimeType", LocalCrimeModel.Crime.Crime04, false)@: Rob the local café<br>
@Html.RadioButton("crimeType", LocalCrimeModel.Crime.Crime05, false)@: Steal casino chips from the local casino<br>
@Html.RadioButton("crimeType", LocalCrimeModel.Crime.Crime06, false)@: Rob the local theatre<br>
@Html.RadioButton("crimeType", LocalCrimeModel.Crime.Crime07, false)@: Rob the local supermarket<br>
@Html.RadioButton("crimeType", LocalCrimeModel.Crime.Crime08, false)@: Rob a laundry service<br>
@Html.RadioButton("crimeType", LocalCrimeModel.Crime.Crime09, false)@: Empty a parking meter<br>
@Html.RadioButton("crimeType", LocalCrimeModel.Crime.Crime10, false)@: Pickpocket someone<br /><br />
<input class="btn btn-large btn-primary" type="submit" value="Commit crime!" />
}
</div>
</body>
</html>
到目前为止,我可以成功执行犯罪,并且经验和金钱会添加到数据库中。我坚持改变每次犯罪的“支出”。感谢任何帮助,我已经谷歌搜索了 2 天但没有结果。
谢谢
最佳答案
您是否在寻找 switch
语言结构?
你可以这样写:
switch (crimeType)
{
case LocalCrimeModel.Crime.Crime01:
g.Experience += 1000;
g.Cash += 100;
break;
case LocalCrimeModel.Crime.Crime02:
g.Experience += 2000;
g.Cash += 200;
break;
case LocalCrimeModel.Crime.Crime03:
g.Experience += 3000;
g.Cash += 300;
break;
case LocalCrimeModel.Crime.Crime04:
g.Experience += 4000;
g.Cash += 400;
break;
...
default:
break;
}
你不能吗?
编辑:
另一方面,这种硬编码逻辑并不是真正可扩展的,犯罪不应该是 enum
,而是一个 List<Crime>
填充表单数据库。 Crime
应该是这样的:
public class LocalCrimeModel
{
public class Crime
{
public int ID { get; set; }
public string Name { get; set; }
public decimal Cash { get; set; }
public int Experience { get; set; }
}
public string Message { get; set; }
public IList<Crime> Crimes { get; set; }
public int SelectedCrimeID { get; set; }
public Crime SelectedCrime
{
get
{
if (this.Crimes != null)
{
return this.Crimes.FirstOrDefault(o => o.ID == this.SelectedCrimeID);
}
else
{
return null;
}
}
}
}
CrimesController 可以像这样:
public class CrimesController : Controller
{
public ActionResult Index()
{
var model = new LocalCrimeModel();
model.Crimes = GetCrimes(); // THIS SHOULD BE A RESULT OF A DATABASE QUERY
return View(model);
}
[HttpPost]
public ActionResult Index(LocalCrimeModel model)
{
if (model != null)
{
model = new LocalCrimeModel(); // just to be sure
}
model.Crimes = GetCrimes(); // USE THE SAME QUERY HERE
if (model != null && model.SelectedCrime != null)
{
var db = new FGEntities();
var g = db.UserGangster.FirstOrDefault(p => p.UserProfile.UserName == User.Identity.Name);
g.GansterStatistic.CrimesSuccess++;
g.Experience += model.SelectedCrime.Experience;
g.Cash += model.SelectedCrime.Cash;
db.SaveChanges();
model.Message = "You commited the crime!";
}
else
{
model.Message = "Crime does not exist!";
}
return View(model);
}
}
你的观点也可能是这样的:
@using FiveGangs.Models
@model FiveGangs.Models.LocalCrimeModel
<!DOCTYPE html>
<html>
<head>
<title>Crimes</title>
</head>
<body>
<div>
<h2>Crimes</h2>
@if (model.Message != null)
{
<p class="warning">@model.Message</p>
}
@using (Html.BeginForm())
{
foreach (var crime in Model.Crimes)
{
<text>@Html.RadioButton("SelectedCrimeID", crime.ID, false): @crime.Name<br /></text>
}
<br />
<input class="btn btn-large btn-primary" type="submit" value="Commit crime!" />
}
</div>
</body>
</html>
关于c# - actionresult 的不同结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16438703/
我有一个 ActionResult 调用另一个 ActionResult。 我在我的 case 语句中调用了一个 ActionResult,但它不起作用。这是我所拥有的: public Acti
我有一个 ActionResult 扩展,它在返回页面时向 TempData 添加 toast: public static IActionResult WithMessage(this Action
假设我有以下代码,在记事本中模拟,所以请原谅任何小错误:) //Default page public ActionResult Index() { var musicView
我有一个来自数据库的对象,它在我的应用程序的很多地方使用。 实际的精确对象构建起来有点复杂,尤其是在开发过程中,我已经多次更改它。为此,我将方法从 Controller 中提取出来,并构建了一个具有对
我像这样向 GET ActionResult 发送参数: public ActionResult MyFormLetter(string studentName, string teacherName
在 Scott Hanselman 的书中(第 1 章),他为我们提供了两个选项来实现 Create 操作方法的 [HttpPost]。 第一个依赖于 TryUpdateModel 根据传入的表单字段
错误在下面代码的第 5 行: public class FirstController : Controller{ public async Task Index() {
我得到了简单的网络服务应用程序: public class MyController : Controller { public ActionResult balance( int amount)
所以我有这个 Javascript 代码: function AddToStuff(somethingID) { var stuffID = document.getElementById('
我试图在选中复选框时调用 ActionResult,但我不知道为什么它不起作用下面是我的代码。 --复选框 --模态
我正在使用 MVC 4 创建游戏。有一个犯罪功能,但我无法解决。我已经尝试了很多东西,但由于我是 MVC4 的新手,所以我无法弄明白。 我创建了一个单选按钮列表,每个不同的选项应该给出不同的结果。这是
我知道有很多类似的问题,但我没有在其中任何一个中得到我想要的答案。我想按原样将 ActionResult 转换为 String,方法如下: public ActionResult ProductDet
我想从一些操作方法中返回一个强制当前页面刷新的结果。 我写这篇文章是为了获得这样的结果: public class RefreshResult : ActionResult { pu
我使用 MVC 5 返回 Json。到达数据返回点的总时间为 40 毫秒。 然而,即使在服务器上运行它,浏览器也需要 6000 毫秒 才能获取数据。 我的问题是返回值后会发生什么。我正在尝试找出导致速
我创建了一个派生自 ActionResult 的 SitemapResult 类。它允许调用者添加任意数量的 URL 资源,然后以 XML 格式输出站点地图数据。 public class Sitem
例如,对于在线 Web 应用程序,我只需要服务器驱动器 X:\Docs 上文件夹中的文档。有没有一种方法可以让网站上的按钮默认打开 X:\Docs?我试过打开特定文件夹但没有成功: [HttpPost
我的 Controller 中有以下内容; public ActionResult CocktailLoungeBarAttendant() { return View
我是 MVC 的新手,正在尝试从 Controller 调用存储过程。 在模型中,我有 edmx,它将所有存储过程作为函数 Cannot implicitly convert type System.
这个有效: public ActionResult Edit(int id, CompPhone cmpPhn) { var vM = new MyViewModel(); if (cmpPh
假设我有应用程序 .net Core 2.1 Web API + Angular 7 为什么我应该总是返回 ActionResult? 这之间有什么区别吗: public ActionResult G
我是一名优秀的程序员,十分优秀!