app.use(express.methodOverride(‘_method‘))執行報錯

來源:互聯網
上載者:User

標籤:

錯誤資訊

F:\my_dev_work\todo\node_modules\express\lib\express.js:99      throw new Error(‘Most middleware (like ‘ + name + ‘) is no longer bundle            ^Error: Most middleware (like methodOverride) is no longer bundled with Express and must be installed separately. Please see https://github.com/senchalabs/connect#middleware.    at Function.Object.defineProperty.get (F:\my_dev_work\todo\node_modules\express\lib\express.js:99:13)    at Object.<anonymous> (F:\my_dev_work\todo\app.js:23:16)    at Module._compile (module.js:460:26)    at Object.Module._extensions..js (module.js:478:10)    at Module.load (module.js:355:32)    at Function.Module._load (module.js:310:12)    at Module.require (module.js:365:17)    at require (module.js:384:17)    at Object.<anonymous> (F:\my_dev_work\todo\bin\www:7:11)    at Module._compile (module.js:460:26)    at Object.Module._extensions..js (module.js:478:10)    at Module.load (module.js:355:32)    at Function.Module._load (module.js:310:12)    at Function.Module.runMain (module.js:501:10)    at startup (node.js:129:16)    at node.js:814:3

原因:express版本的問題

express3.x代碼:

app.use(express.methodOverride(‘_method‘));app.use(express.static(path.join(__dirname, ‘public‘)));

頁面代碼:

<form method=‘post‘ action=‘/tasks/<%=task.id%>‘>    <input type=‘hidden‘ name=‘_method‘ value=‘put‘>    <input type=‘text‘ name=‘taskno‘ value=‘<%=task.taskno%>‘>    <input type=‘text‘ name=‘taskname‘ value=‘<%=task.taskname%>‘>    <input type=‘submit‘ value=‘save‘></form>

express4.x代碼:

npm install method-override
var methodOverride = require(‘method-override‘);app.use(methodOverride(‘_method‘));app.use(express.static(path.join(__dirname, ‘public‘)));

頁面代碼:

<form method=‘post‘ action=‘/tasks/<%=task.id%>?_method=put‘>    <input type=‘text‘ name=‘taskno‘ value=‘<%=task.taskno%>‘>    <input type=‘text‘ name=‘taskname‘ value=‘<%=task.taskname%>‘>    <input type=‘submit‘ value=‘save‘></form>


app.use(express.methodOverride(‘_method‘))執行報錯

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.