gpt4 book ai didi

c# - 在 C# 中从 Ajax 获取值(value)

转载 作者:太空宇宙 更新时间:2023-11-03 19:40:28 24 4
gpt4 key购买 nike

在 PHP 中,我可以使用以下代码从 ajax 获取值:$order = $_GET['order']

什么是C#中的源代码,与上面的PHP代码有类似的功能?

最佳答案

对于一个简单的答案而不是费心关心上下文,利用全局 Request 对象:

string order = Request.QueryString["order"];

要在 MVC Controller 操作中使用,请将其声明为方法中的参数:

public ActionResult GetOrder(string order) {
// ... other code ...
}

如果您想对 uri 本身进行更简洁的控制,您可以选择定义路由模板,包括为参数分配类型约束:

[HttpGet, Route("orders/{order:int}")]
public ActionResult GetOrder(int order) {
// ... other code ...
}

关于c# - 在 C# 中从 Ajax 获取值(value),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54121933/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com