我正在尝试将URL作为REST服务中的参数传递。
请求: https://LocalHost/api/InsertUrl/ {类型},{URL},{}备注 https://LocalHost/api/InsertUrl/External,https://www.amazon.com,RANDOM注意
示例代码:
[HttpPost]
[Route("api/InsertUrl/{Type},{URL},{Notes}")]
public bool SetUrl(string Type, string URL, string Notes)
{
bool Status = repository.SetupUrl(Type, URL, Notes);
return Status ;
}
使用POSTMAN(使用POST)测试这个结束点我得到:: 404 - 找不到文件或目录。 您要查找的资源可能已被删除,名称已更改或暂时不可用。
我在这里做错了什么?
答案 0 :(得分:0)