IT業界のすみっこ暮らし

ふと気がついたときの記録



AjaxでリストオブジェクトをControllerに渡す

AjaxでリストオブジェクトをControllerに渡す

stackoverflow.com

JS

var things = [
    { id: 1, color: 'yellow' },
    { id: 2, color: 'blue' },
    { id: 3, color: 'red' }
];
$.post('@Url.Action("PassThings")', { things: things },
   function () {
        $('#result').html('"PassThings()" successfully called.');
   });

Controller

[HttpPost]
public void PassThings(IEnumerable<Thing> things)
{
    // do stuff with things here...
}

英語インタビュー例文集め

smalldata.tech

www.swiss-miss.com

www.reddit.com

PerformanceJS | The Best Frontend JavaScript Interview Questions (written by a Frontend Engineer)

www.codementor.io

blog.yhat.com

ASP.NET MVC Interview Questions | elmah.io

The job interview • jotaen.net

github.com

github.com

Startup Interview Questions | WegnerDesign

hackernoon.com

mldatageek.herokuapp.com

ASP.NET MVC interview questions with answers - CodeProject





プライバシーポリシー