我有一个表单,在提交时会针对 AJAX 调用进行处理。
为了express.js
使用其他 HTTP 动词,表单必须具有
<input type="hidden" name="_method" value="put">
AJAX 调用有type: "PUT"
,当它被发送到服务器端时,我不断收到一个404
, Cannot PUT
。
AJAX 或表单是否需要为PUT
请求成功提交其他内容?
有什么建议么?
路线/index.js
app.put('/:library/:book/:genre/', function(req, res) {
console.log(req.params.genre);
res.send(200, {"youKnow":"putter"});
});
图书馆BookForm.jade
form#create-library-form(action='#', method='post')
input(name="_method", value="PUT", type="hidden")
div
label Book
input#book-name(type='text', name='book-name', required='required')
div
label Gender
select#book-genre(name='book-genre')
option(value='scifi') SciFi
option(value='fantasy') Fantasy
div
input(type='submit', id='create-book-submit', value='Create Book')
图书馆BookAjax.js
event.preventDefault();
$.ajax({
url: '/publicLibrary/drawingBook/fantasy'
type: 'PUT',
contentType: 'application/json: charset=utf-8',
dataType: 'json',
data: form.serialize()
}).done(function(msg) {
alert("put success: " + msg);
}).fail(function(msg) {
console.log("failure: " + msg);
});
我也尝试type: "POST"
过 AJAX 请求。在这种情况下,会在路由POST
中发送和执行请求,而不是在.app.put