首页 asp.Net asp.net – @ Url.Action在控制器中创建空值的参数之间添加“amp;”?

asp.net – @ Url.Action在控制器中创建空值的参数之间添加“amp;”?

我试图通过Url.Action发送多个参数. $(#dialog).dialog({ autoOpen: false, width: 850, height: 420, resizable: false, title: Vehicle details, modal: true, open: function (event, ui) { $(t

我试图通过Url.Action发送多个参数.

$('#dialog').dialog({
   autoOpen: false,width: 850,height: 420,resizable: false,title: 'Vehicle details',modal: true,open: function (event,ui) {
   $(this).load("@Url.Action("LightStoneRequest",new { registrationNumber = Model.VehicleRegistration,vinNumber = Model.vVinNumber })");
   },buttons: {
          "Close": function () {
               $(this).dialog("close");
           }
       }
   });

在运行时,它看起来如下:

$(this).load("/APQuotes/LightStoneRequest?registrationNumber=TE5TGP&vinNumber=VINTEST44889856");

正如你所看到的,有一个vin号通过,但它在我的控制器中为null.

这是我的模态.

public partial class LightStoneRequest
    {
        public LightStoneRequest()
        {
            this.LightStoneDataFields = new HashSet<LightStoneDataField>();
        }

        public int LightStoneRequestId { get; set; }
        public string RegistrationNumber { get; set; }
        public string VinNumber { get; set; }

        public virtual ICollection<LightStoneDataField> LightStoneDataFields { get; set; }
    }

如果我删除放大器;它有效,但URL.Action添加了amp;.

解决方法

Url.Action不是问题 – 它就是你如何使用它.

您正在使用@ – 这用于在(X)HTML页面中内联一段服务器端代码的结果.在(X)HTML页面中,实体必须正确编码,从而使您的&进入& amp;这是完全正确的行为 – 例如,它应该如何在文本或属性中内联(这就是你在例如< a href =“@ …”>中使用它的原因).

但是,您尝试内联原始值而不是编码值 – 因为您没有尝试发出HTML,而是发出原始文本. Html.Raw就是这么做的:

@Html.Raw(Url.Action("Test",new { arg1 = "Hi!",arg2 = "there." }))

本文来自网络,不代表青岛站长网立场。转载请注明出处: https://www.0532zz.com/html/kaifa/asp-net/20201114/12151.html
上一篇
下一篇

作者: dawei

【声明】:青岛站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐

返回顶部