gpt4 book ai didi

c# - 如何制作可以接受来自外部站点的请求的 ASP.NET MVC Controller ?

转载 作者:行者123 更新时间:2023-12-03 23:33:18 25 4
gpt4 key购买 nike

我想要一个像这样的 Controller

public ActionResult UnlockAssets ( string psd ) 
{
// ...
}

外部站点可以调用并从中返回 JSON。这可能吗?如果是这样,我从哪里开始?

最佳答案

您可能需要一个 Web API ( http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api)

举个简单的例子

using System;
using System.Linq;
using System.Net;
using System.Web.Http;


public class DocumentsController : ApiController
{
public IHttpActionResult UnlockAssets (string psd )
{
var documents = new DocumentRepo();
if (!documents.Exists(psd))
{
return NotFound();
}else{
documents.unlock(psd)
return Ok(product);
}
}
}

关于c# - 如何制作可以接受来自外部站点的请求的 ASP.NET MVC Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35373674/

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