I'm missing something here. I've got this jQuery JavaScript:
$.ajax({
type: "POST",
url: "/update-note-order",
dataType: "json",
data: {
orderedIds: orderedIds,
unixTimeMs: new Date().getTime()
}
});
Where orderedIds
is a JavaScript number array (e.g. var orderedIds = [1, 2]
).
The handling Controller
method is:
[HttpPost]
public void UpdateNoteOrder(long[] orderedIds, long unixTimeMs)
{
...
}
When I put a Debugger.Break()
in UpdateNoteOrder()
, orderedIds
is null
in the Watch window. (unixTimeMs
, however, has a numeric value.)
How do I pass the number array through $.ajax()
such that orderedIds
is a long[]
in my controller?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…