我使用小提琴手來測試我的要求..如何傳遞MULT參數網頁API
以下reuest我習慣叫我的網絡API方法..它工作正常。
http://localhost:50079/Import/Test/abc
Type :Get
web api method:
[ActionName("Test")]
public bool getconnection(string id)
{
return true;
}
如果我通過多參數我得到錯誤:HTTP/1.1 404未找到
我用這樣的:
http://localhost:50079/Import/Test/abc/cde
Type :Get
web api method:
[ActionName("Test")]
public bool getconnection(string id,string value)
{
return true;
}
我不希望使用任何途徑。 ..讓我知道爲什麼如果我通過多個參數爲什麼它不被識別..
POST和GET請求的一般解決方案我已經回答[此問題](http://stackoverflow.com/a/37298083/5714537)。 –