我在我的應用程序中使用AJAX的前端,並在前端我 $.post('/post', $("#submitform").serialize())
.done(function(res) {
//3. Receive the server response, no need to emit an event
if (res.success) {
在我的示例MVC應用程序,我有一個模型 class SampleModel
{
public int Id { get; set; }
public string Name { get; set; }
public List<Certification> Certifications { get; set; }
}
class Certification
{