问题描述
我正在尝试使用参数将数据从视图传递到控制器.现在,我遇到了一些困难.一旦我从表中选择一行并按下对ShowTasks()具有onclick方法的按钮,我将尝试传递这些参数.
I am trying to pass data from a view to a controller using parameters.Now I am running a few difficulities. I am trying to pass those parameters once I select a row from a table and press on a button which has a onclick method to ShowTasks()
C#控制器:
[Route("/service/delivery/{id}/{shopdoccode}/{regdate}")]
public ActionResult Delivery(string id, string shopdoccode, string regdate)
{
//do stuf
}
用户单击按钮时的Javascript功能:
The Javascript function when user clicks on button:
function ShowTasks() {
//Dear Stackoverflow > This works, this is for selecting a row in the table
var $selectedRow = $(".highlight");
if ($selectedRow.length == 1) {
var dcColumn = 0;
var rdColumn = 1;
var shopdoccodeColumn = 3;
//assigning name to the colomn value
var id = $selectedRow[0].children[dcColumn].innerText.trim();
var regdate = $selectedRow[0].children[rdColumn].innerText.trim();
var shopdoccode = $selectedRow[0].children[shopdoccodeColumn].innerText.trim();
//ajax
if (id && regdate && shopdoccode) {
$.ajax({
type: 'POST',
url: '@Url.Action("service", "delivery" ,new { id = "id", shopdoccode = "shopdoccode", regdate = "regdate" })',
data: { id, regdate, shopdoccode },
success: function (data) {
if (data.success) {
console.log("Succes");
}
},
error: function (data) {
console.log("Error");
}
});
}
}
}
到目前为止,我做了什么?坐了几个小时,试图找到一种将参数提供给控制器的方法,以便我可以调用SQL存储过程.不幸的是,我不能为此简单地使用隐藏形式.
What have I done so far? Sitting for hours trying to find a way to give the parameters to my controller so I can invoke a SQL stored procedure.Unforntunately I can not simply use a hidden form for this.
这也很有帮助:网址操作参数?
@sleeyuen
@sleeyuen
推荐答案
您不能* .js或* .html文件包含剃刀代码.
You can not *.js or *.html file wrtie razor code.
@Url.Action(string actionName,string controllerName,object routeValues)
以上代码只能用于* .cshtml文件.
The above code can only be used *.cshtml file.
这篇关于使用Ajax的网址操作参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!