我想驗證後,在我的玉視圖中顯示我的錯誤消息。 玉 H1 Hello world
#error
p #{JSON.stringify(errorMsg)}
div
form(action="/",method="post")
div Foo
div
input(type="text",name="foo")
div
inp
我試圖根據URL發送響應。希望檢查是否可以檢查網址並在onPreResponse中發送回覆。這是我想要做的事情。 server.ext('onPreResponse', function (request, reply) {
if (request.path.indexOf('/api') > -1) {
// Do nothing. Let the response go a
由於某種原因,當我使用nodemon啓動我的hapi服務器並導航到http://localhost:3000/hapi-ext-fetch並且這使調試非常困難時,服務器控制檯中沒有顯示錯誤。這裏是我的代碼: var Hapi = require('hapi');
var Joi = require('joi');
var fetch = require('isomorphic-fetch');