2017-06-16 5 views
5

ich Fehler, wenn die Parameter übergeben,MVC Web-API, Fehler: binden können nicht mehrere Parameter

"Can't bind multiple parameters"

hier ist mein Code

[HttpPost] 
public IHttpActionResult GenerateToken([FromBody]string userName, [FromBody]string password) 
{ 
    //... 
} 

Ajax:

$.ajax({ 
    cache: false, 
    url: 'http://localhost:14980/api/token/GenerateToken', 
    type: 'POST', 
    contentType: "application/json; charset=utf-8", 
    data: { userName: "userName",password:"password" }, 

    success: function (response) { 
    }, 

    error: function (jqXhr, textStatus, errorThrown) { 

     console.log(jqXhr.responseText); 
     alert(textStatus + ": " + errorThrown + ": " + jqXhr.responseText + " " + jqXhr.status); 
    }, 
    complete: function (jqXhr) { 

    }, 
}) 
+0

Mögliche Duplikat [WebAPI Mehrere Put/Post-Einstellungen] zu senden (https://stackoverflow.com/questions/14407458/webapi-multiple-put-post-parameters) –

+0

Lieber Paul. Ich habe gerade die Erwähnung Frage überprüft das ist nicht doppelt, weil diese Frage anders ist als meine aktuelle Frage. Danke – Tom

+0

Verwenden Sie Web API 1 oder 2? –

Antwort

11

Referenz: Parameter Binding in ASP.NET Web API - Using [FromBody]

At most one parameter is allowed to read from the message body. So this will not work:

// Caution: Will not work!  
public HttpResponseMessage Post([FromBody] int id, [FromBody] string name) { ... } 

The reason for this rule is that the request body might be stored in a non-buffered stream that can only be read once.

Hervorhebung von mir

Dass gesagt wird. Sie müssen ein Modell zum Speichern der erwarteten aggregierten Daten erstellen.

public class AuthModel { 
    public string userName { get; set; } 
    public string password { get; set; } 
} 

und dann Maßnahmen aktualisieren, dieses Modell im Körper

[HttpPost] 
public IHttpActionResult GenerateToken([FromBody] AuthModel model) { 
    string userName = model.userName; 
    string password = model.password; 
    //... 
} 

sicherstellen, dass die Nutzlast zu erwarten richtig

var model = { userName: "userName", password: "password" }; 
$.ajax({ 
    cache: false, 
    url: 'http://localhost:14980/api/token/GenerateToken', 
    type: 'POST', 
    contentType: "application/json; charset=utf-8", 
    data: JSON.stringify(model), 
    success: function (response) { 
    }, 

    error: function (jqXhr, textStatus, errorThrown) { 

     console.log(jqXhr.responseText); 
     alert(textStatus + ": " + errorThrown + ": " + jqXhr.responseText + " " + jqXhr.status); 
    }, 
    complete: function (jqXhr) { 

    }, 
})