- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我无法让我的表单在我的 Controller 上调用 POST 操作。
我的页面代码
@model My.Models.ManageUserViewModel
@using (Html.BeginForm("Manage", "Account", FormMethod.Post, new { @id = "manageAccountFormHolder", @class = "form-horizontal col-sm-8 col-sm-offset-2 v-offset-4" }))
{
@Html.AntiForgeryToken()
<h4 class="text-center">Change Password</h4>
<div class="form-group">
@Html.LabelFor(m => m.OldPassword, new { @class = "col-sm-3 control-label" })
<div class="col-sm-9">
@Html.PasswordFor(m => m.OldPassword, new { @class = "form-control" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(m => m.NewPassword, new { @class = "col-sm-3 control-label" })
<div class="col-sm-9">
@Html.PasswordFor(m => m.NewPassword, new { @class = "form-control" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(m => m.ConfirmPassword, new { @class = "col-sm-3 control-label" })
<div class="col-sm-9">
@Html.PasswordFor(m => m.ConfirmPassword, new { @class = "form-control" })
</div>
</div>
<h4 class="text-center v-offset-4">Edit Personal Details</h4>
<div class="form-group">
@Html.LabelFor(m => m.FirstName, new { @class = "col-sm-3 control-label" })
<div class="col-sm-4">
@Html.TextBoxFor(m => m.FirstName, new { @class = "form-control", @placeholder = "First name" })
</div>
<div class="col-sm-5">
@Html.TextBoxFor(m => m.LastName, new { @class = "form-control", @placeholder = "Last name" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(m => m.Mobile, new { @class = "col-sm-3 control-label" })
<div class="col-sm-9">
<input class="form-control" id="manageMobile" name="manageMobile" type="tel">
@Html.TextBoxFor(m => m.Mobile, new { @class = "form-control", @placeholder = "First name" })
<p class="help-block">For authorisation code. We will never share or display your mobile number.</p>
</div>
</div>
<h4 class="text-center v-offset-4">Edit Address</h4>
<div class="form-group">
@Html.LabelFor(m => m.Address1, new { @class = "col-sm-3 control-label" })
<div class="col-sm-2">
@Html.TextBoxFor(m => m.Address1, new { @class = "form-control"})
</div>
<div class="col-sm-7">
@Html.TextBoxFor(m => m.Address2, new { @class = "form-control" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(m => m.TownSuburb, new { @class = "col-sm-3 control-label" })
<div class="col-sm-9">
@Html.TextBoxFor(m => m.TownSuburb, new { @class = "form-control" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(m => m.StateRegion, new { @class = "col-sm-3 control-label" })
<div class="col-sm-9">
@Html.TextBoxFor(m => m.StateRegion, new { @class = "form-control" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(m => m.PostCode, new { @class = "col-sm-3 control-label" })
<div class="col-sm-9">
@Html.TextBoxFor(m => m.PostCode, new { @class = "form-control" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(m => m.Country, new { @class = "col-sm-3 control-label" })
<div class="col-sm-9">
@Html.TextBoxFor(m => m.Country, new { @class = "form-control" })
@Html.HiddenFor(m => m.CountryIso, new { @class = "form-control" })
</div>
</div>
<div class="text-center">
<button class="btn btn-default" type="submit">Save Changes</button>
</div>
}
我的模型
public class ManageUserViewModel
{
[Required]
[DataType(DataType.Password)]
[Display(Name = "Current password")]
public string OldPassword { get; set; }
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "New password")]
public string NewPassword { get; set; }
[DataType(DataType.Password)]
[Display(Name = "Confirm New Password")]
[Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
[Required]
[Display(Name = "Full Name")]
public string FirstName { get; set; }
[Required]
public string LastName { get; set; }
[Required]
[Display(Name = "Mobile Number")]
public string Mobile { get; set; }
[Display(Name = "Street Address")]
public string Address1 { get; set; }
public string Address2 { get; set; }
[Display(Name = "City")]
public string TownSuburb { get; set; }
[Display(Name = "State")]
public string StateRegion { get; set; }
[Display(Name = "Postcode")]
public string PostCode { get; set; }
[Display(Name = "Country")]
public string Country { get; set; }
public string CountryIso { get; set; }
}
我的 Controller 操作
[HttpGet]
public ActionResult Manage(ManageMessageId? message)
{
return View();
}
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Manage(ManageUserViewModel model)
{
//Save changes code here
//Redirect
}
它也不会验证。如果我将其中一个必填字段留空,则不会显示验证错误。
在 Fiddler 中,我看到表单正在发送到服务器,但 GET 方法仍然被调用?请参阅下面的 Fiddler raw,这仍然调用 GET 方法(我将我的模型更新为只有一个属性以使其更简单)。
POST https://localhost:44301/Account/Manage HTTP/1.1
Host: localhost:44301
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: https://localhost:44301/account/manage
Cookie: __RequestVerificationToken=xxxx..........
Connection: keep-alive
Content-Type: application/x-www-form-urlencoded
Content-Length: 20
OldPassword=dfgdfgdg
最佳答案
确定了!如果有人能告诉我为什么,因为我有 NFI......
改变这一行
@using (Html.BeginForm("Manage", "Account", FormMethod.Post, new { @id = "manageAccountFormHolder", @class = "form-horizontal col-sm-8 col-sm-offset-2 v-offset-4" }))
到
@using (Html.BeginForm())
我又来发帖了。是的,编码天才,4 小时来张贴表格!有人想雇用我吗?
编辑:
所以在进一步挖掘之后,问题是我们实现了小写路由。由于路由正在从/Account/Manage 重写为/account/manage,因此从未找到 post 操作(虽然发现 get 操作很好)。 Html.BeginForm() 以小写形式呈现操作,而 Html.BeginForm("Manage", "Account", FormMethod.Post, new{}) 不是,因为我为操作和 Controller 指定了驼峰式大小写。
关于c# - MVC 表单不发布,调用 GET,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29359472/
我知道使用 GET 和 SET 函数的公共(public)变量的缺点/私有(private)变量的优点,但目前我正在使用 Ogre3D 开发自己的第一个“真实”游戏(C++)..同时,我有时需要 6-
我正在开发一个 GSM/GPRS 应用程序,它将每 10 秒报告一些值。我必须使用的 SIM 卡每月只有 15MB 可用数据。我使用的是 SIM900 GSM 芯片供您引用。 我到达服务器的方式是通过
这三者有什么区别:gets - 它获取带有 '\n' 的行gets.chomp - 它得到一行,但删除 '\n' 这样对吗? gets.chomp! 怎么样? 最佳答案 gets - 它得到一个末尾带
问题和我现在遇到的问题 脚本 顺便说一句,评论是挪威语的,如果它们看起来很奇怪哈哈 Connect-AzureAD #variabel $Users = Get-AzureADUser -All:$t
我现在面临的问题是获取一个 URL,如下所示: www.example.com/example.php?url=www.google.com 现在的问题是,如果我的网址中有一个 get,如下所示: w
我有一个 queryString 传递给 servlet 的 doGet() 方法,如下所示: count=9&preId0=-99&objId0=-99&preId1=-99&objId1=-99&
这是我在 Django 模板中的代码: {% for tag in tags %} {{ tag }} {% endfor %} 在view.py中: def tag_find(
我正在尝试在express.js中为我的网络应用程序创建一个路由系统,我需要知道是否需要使用app.get/post/put/delete.apply以编程方式设置多个功能对于一条路线。 也是如此 a
我正在通过示例查看 A.Mele Django,第 1 章 def post_list(request, category=None): object_list = Post.publishe
如果我想找到与IIS站点或应用程序关联的目录,我该怎么做? 我似乎无法从Get-Website和Get-WebApplication的对象的任何属性中找到任何允许我这样做的东西。 最佳答案 只需查看一
不知道发生了什么。当我执行以下代码时......它运行良好......但它产生了错误。如果我将以下内容粘贴到我的浏览器地址栏中并点击它,我会得到一个 URL。如果我通过 KRL http:get 输入
Curl 提供了一系列不同的带有 X 前缀的 http 方法调用,但也提供了不带 X 的相同方法。我两种都试过了,但我似乎无法弄清楚其中的区别。有人可以快速向我解释这两种操作有何不同吗? 最佳答案 默
request.GET.get 是什么意思?我在 Django 中看到类似的东西 page = request.GET.get('page', 1) 我认为它与类似的东西有关 « 它们是如
我正在从我的 Angular2 站点查询一些 Elasticsearch 服务器。为了帮助提高安全性,我们希望锁定对 GET 请求的访问权限。 Elasticsearch 支持带主体的 GET,但我在
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 4年前关闭。 Improve t
调用 HTable.get(List) 返回的 Result 数组的顺序是什么? ? 我的意思是,假设与输入列表的顺序相同是否正确? 最佳答案 结果数组中的顺序将与输入列表的顺序相同。与批处理方法一样
所以我有一个看起来像这样的 JSON 数组: var myData = { foo : { biz : 'baz', fig : 'tree' } }
我正在学习 Ajax、javascript 和 html,并且有一个应用程序可以触发“get”请求,然后再触发另一个“get”请求。这些请求是用户按下按钮的结果。在我的 servlet 中,我使用 T
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 6 年前。 Improv
运行以下 cmdlet 适用于组成员(Amer 域中的组)中的所有用户,无论列出的用户位于哪个域: Get-ADGroupMember -Server amer 但是,当尝试通过管道传输到 Get-
我是一名优秀的程序员,十分优秀!