当使用ajax进行页面提交抛出以上异常,最后结果发现
<form id="newsForm" method="post" enctype="multipart/form-data">
新闻标题:<input name="ntittle"><br>
新闻摘要:<input name="nsummary"><br>
新闻内容:<input name="ncontent"><br>
新闻作者:<input name="nauthor"><br>
发布时间:<input name="ndate" ><br>
图片:<input type="file" name="newpic"><br>
新闻主题:<select name="newsType.ntypeId">
<option value="-1">请选择新闻主题</option>
</select><br>
<input type="hidden" name="nid"><br>
<input type="hidden" name="npic"><br>
<input type="submit" value="添加">
</form>
使用的是AJAX,所以提交就不是直接submit直接提交表单方式了,所以应该使用button,然后表单序列化。
<input type="button" value="添加">