0
我想知道是否有辦法在後端捕獲數組ID。在Nancyfx中如何傳遞數組Ids
我有這個帖子的方法。
$http({
method: 'POST',
url: "posting",
headers: {'Content-Type': 'application/json'},
data: myIds // ["1","2" ... etc ]
})
而在後端問題是我如何將ID綁定到一些變量?
Post["posting"] = p =>
{
var data = this.Bind();// here is the problem ????
var OK = someMethod(data);
return OK;
};
我可以讓它工作,如果我添加另一個模型,但我們總是需要一個模型?