所以昨天我开始为工作中的项目学习javascript和web开发。我们正在使用MVC模式,我在确定javascript类如何与视图一起工作时遇到了问题。任何有关这方面的帮助将不胜感激。就像我说的,我的知识非常有限。但是,我知道C#和WPF(MVVM),所以也许这些知识可以帮助我。
我们使用Kendo控件。我们的剑道网格的一些javascript在下面。
grid.js:
function onChange(e) {
//get currently selected dataItem
var grid = e.sender;
var selectedRow = grid.select();
var dataItem = grid.dataItem(selectedRow);
var y = $.ajax({
url: "/api/ServiceOrderData/" + dataItem.id,
type: 'GET',
dataType: 'json'
});
}
$("#serviceOrderList").kendoGrid({
groupable: true,
scrollable: true,
change: onChange,
sortable: true,
selectable: "row",
resizable: true,
pageable: true,
height: 420,
columns: [
{ field: 'PriorityCodeName', title: ' ', width: 50 },
{ field: 'ServiceOrderNumber', title: 'SO#' },
{ field: 'ServiceOrderTypeName', title: 'Type' },
{ field: 'ScheduledDate', title: 'Scheduled Date' },
{ field: 'StreetNumber', title: 'ST#', width: '11%' },
{ field: 'StreetName', title: 'Street Name' },
{ field: 'City', title: 'City' },
{ field: 'State', title: 'ST.' },
{ field: 'IsClaimed', title: 'Claimed'}
],
dataSource: serviceOrderListDataSource
});
我希望能够使用onChange函数中的值:
var dataItem = grid.dataItem(selectedRow);
在以下视图中。
ESRIMapView.cshtml:
<body class="claro">
<div id="mainWindow" data-dojo-type="dijit/layout/BorderContainer"
data-dojo-props="design:'sidebar', gutters:false"
style="width:100%; height:100%;">
<div id="leftPane"
data-dojo-type="dijit/layout/ContentPane"
data-dojo-props="region:'left'">
<br>
<textarea type="text" id="address" />*THIS IS WHERE I WILL USE dataItem! dataItem.StreetNumber (syntax?) to be exact</textArea>
<br>
<button id="locate" data-dojo-type="dijit/form/Button">Locate</button>
</div>
<div id="map"
data-dojo-type="dijit/layout/ContentPane"
data-dojo-props="region:'center'">
</div>
</div>
</body>
现在,当用户点击index.cshtml屏幕上的一个按钮时,我的ESRIMapView会被加载,该屏幕包含我试图从中获取值的网格。
<li>@Html.ActionLink("Map", "ESRIMapView", "Home", null, new { @class = "k-button" })</li>
这是我的&#34; Home&#34;控制器:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Services.Description;
using Alliance.MFS.Data.Client.Models;
using Alliance.MFS.Data.Local.Repositories;
namespace AllianceMobileWeb.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Message = "Welcome to ASP.NET MVC!";
return View();
}
public ActionResult About()
{
ViewBag.Message = "Your app description page.";
return View();
}
public ActionResult ServiceOrderMaintenance()
{
ViewBag.Message = "Your contact page.";
return View();
}
public ActionResult ESRIMapView()
{
ViewBag.Message = "Your contact page.";
return View();
}
}
}
我意识到这可能是一个非常基本的问题,但任何帮助都会受到赞赏。请尽快详细说明您的回复:)
答案 0 :(得分:1)
由于您在将(初始)视图返回给用户之前创建链接,因此需要一些技巧来更改它。我建议如下:在a
元素上设置ID并更改其href
属性;在控制器上,设置与街道号对应的参数并预填充视图:
控制器:
public ActionResult ESRIMapView(string streetNumber)
{
ViewBag.Message = "Your contact page.";
ViewBag.StreetNumber = streetNumber;
return View();
}
包含li
的视图(请注意a
元素上的ID):
<li>@Html.ActionLink("Map", "ESRIMapView", "Home", null, new { @class = "k-button", id="myMapaction" })</li>
包含textarea
(ESRIMapView)的视图:
<textarea type="text" id="address" />@ViewBag.StreetNumber</textArea>
grid.js:
function onChange(e) {
//get currently selected dataItem
var grid = e.sender;
var selectedRow = grid.select();
var dataItem = grid.dataItem(selectedRow);
//change the link
var actionElem = $("#myMapaction");
var url = actionElem.attr("href");
if (url.indexOf("=") === -1) { //first time selecting a row
url += "?streetNumber=" + dataItem.StreetNumber;
} else {
url = url.substring(0, url.lastIndexOf("=") +1) + dataItem.StreetNumber;
}
actionElem.attr("href", url);
//change the link
var y = $.ajax({
url: "/api/ServiceOrderData/" + dataItem.id,
type: 'GET',
dataType: 'json'
});
}
此脚本只是在查询字符串中添加街道号参数。当用户第一次选择行时,查询字符串中不存在streetNumber
参数。在第一次之后,参数就在那里,我们必须只更改值。
请注意,此解决方案有其局限性:如果查询字符串中有其他参数,则不工作(必须更改添加/编辑参数的逻辑)。