0

我有一个表单,在提交时会针对 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

4

1 回答 1

1

改变:

app.put('/:library/:book/:genre/', function(req, res) {

至:

app.put('/:library/:book/:genre', function(req, res) {

尾部斜杠导致 404 错误,因为您的 AJAX 调用的 URL 中没有。

于 2013-09-23T14:51:48.460 回答