admin管理员组文章数量:1345179
I need to render a URL for a JavaScript search that I am doing. Unfortunately Url.Action
renders not only the action but the current id. This occurs when presently on page utilizing the action with the id.
To illustrate Url.Action("List", "Org");
will first render Org/List
from which I can append an org to be listed. However, after the location has been moved to Org/List/12345
Url.Action("List", "Org");
will render Org/List/12345
and appending to that creates an issue where I end up with Org/List/12345/6789
.
Is there a different method I can use other than Url.Action
? I've thought about using JavaScript to check for the number of /
and removing part of the string but that seems a bit hackish.
// appears in my Site.Master & utilizes the AutoComplete plugin for jQuery
$(document).ready(function() {
$("input#FindOrg").autoplete('<%= Url.Action("Find", "Org") %>', {
minChars: 3,
maxItemsToShow: 25
}).result(function(evt, data, formatted) {
var url = '<%= Url.Action("List", "Org") %>/';
window.location.href = url + data;
});
});
I need to render a URL for a JavaScript search that I am doing. Unfortunately Url.Action
renders not only the action but the current id. This occurs when presently on page utilizing the action with the id.
To illustrate Url.Action("List", "Org");
will first render Org/List
from which I can append an org to be listed. However, after the location has been moved to Org/List/12345
Url.Action("List", "Org");
will render Org/List/12345
and appending to that creates an issue where I end up with Org/List/12345/6789
.
Is there a different method I can use other than Url.Action
? I've thought about using JavaScript to check for the number of /
and removing part of the string but that seems a bit hackish.
// appears in my Site.Master & utilizes the AutoComplete plugin for jQuery
$(document).ready(function() {
$("input#FindOrg").autoplete('<%= Url.Action("Find", "Org") %>', {
minChars: 3,
maxItemsToShow: 25
}).result(function(evt, data, formatted) {
var url = '<%= Url.Action("List", "Org") %>/';
window.location.href = url + data;
});
});
Share
Improve this question
edited Jan 18, 2010 at 19:33
ahsteele
asked Jan 18, 2010 at 19:19
ahsteeleahsteele
26.5k28 gold badges138 silver badges253 bronze badges
2 Answers
Reset to default 12Couple of suggestions:
What happens if you use Url.Action("Find", "Org", new { id = "" })
?
Alternately, try manually building the url with Url.Content("~/Find/Org")
.
You could 'cheat' and access the 'Controller' and 'Action' entries in the Routing Dictionary. This would then allow you to construct only the part of the url you need. The only caveat is that if you change your routing model these routines may bee incorrect.
本文标签: javascriptUrlAction only render controller and action but not idStack Overflow
版权声明:本文标题:javascript - Url.Action only render controller and action but not id - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743761604a2534480.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论