Hapijs – views

There are two ways for rendering a view by using reply.view()interface, or by using view handler.

– reply.view()

[cc lang=”javascript”]server.route({
method: ‘GET’,
path: ‘/’,
handler: function (request, reply) {
reply.view(‘index’);
}
});[/cc]

 

if you want to pass context to reply.view(), pass an object as the second parameter, for example:

[cc lang=”javascript”]server.route({
method: ‘GET’,
path: ‘/’,
handler: function (request, reply) {
reply.view(‘index’, { title: ‘My home page’ });
}
});
[/cc]

-View handler

[cc lang=”javascript”]

server.route({
method: ‘GET’,
path: ‘/’,
handler: {
view: ‘index’
}
});
[/cc]

here, context is passed in the key context:

[cc lang=”javascript”]
handler: {
view: {
template: ‘index’,
context: {
title: ‘home page’
}
}
}
[/cc]

Global context

if you want to add some default context that should always be available on all templates?

you have to pass context option when calling server.views():

[cc lang=”javascript”]

var yourContext = {
title: ‘siteTittle’
};
server.views({
engines: {
‘html’: {
module: require(‘handlebars’),
compileMode: ‘sync’
}
},
context: yourContext
});
[/cc]


by

Tags:

Recent Post

  • What Is Synthetic Data? Benefits, Techniques & Applications in AI & ML

    In today’s data-driven era, information is the cornerstone of technological advancement and business innovation. However, real-world data often presents challenges—such as scarcity, sensitivity, and high costs—especially when it comes to specific or restricted datasets. Synthetic data offers a transformative solution, providing businesses and researchers with a way to generate realistic and usable data without the […]

  • Federated vs Centralized Learning: The Battle for Privacy, Efficiency, and Scalability in AI

    The ever-expanding field of Artificial Intelligence (AI) and Machine Learning (ML) relies heavily on data to train models. Traditionally, this data is centralized, aggregated, and processed in one location. However, with the emergence of privacy concerns, the need for decentralized systems has grown significantly. This is where Federated Learning (FL) steps in as a compelling […]

  • Federated Learning’s Growing Role in Natural Language Processing (NLP)

    Federated learning is gaining traction in one of the most exciting areas: Natural Language Processing (NLP). Predictive text models on your phone and virtual assistants like Google Assistant and Siri constantly learn from how you interact with them. Traditionally, your interactions (i.e., your text messages or voice commands) would need to be sent back to […]

  • What is Knowledge Distillation? Simplifying Complex Models for Faster Inference

    As AI models grow increasingly complex, deploying them in real-time applications becomes challenging due to their computational demands. Knowledge Distillation (KD) offers a solution by transferring knowledge from a large, complex model (the “teacher”) to a smaller, more efficient model (the “student”). This technique allows for significant reductions in model size and computational load without […]

  • Priority Queue in Data Structures: Characteristics, Types, and C Implementation Guide

    In the realm of data structures, a priority queue stands as an advanced extension of the conventional queue. It is an abstract data type that holds a collection of items, each with an associated priority. Unlike a regular queue that dequeues elements in the order of their insertion (following the first-in, first-out principle), a priority […]

  • SRE vs. DevOps: Key Differences and How They Work Together

    In the evolving landscape of software development, businesses are increasingly focusing on speed, reliability, and efficiency. Two methodologies, Site Reliability Engineering (SRE) and DevOps, have gained prominence for their ability to accelerate product releases while improving system stability. While both methodologies share common goals, they differ in focus, responsibilities, and execution. Rather than being seen […]

Click to Copy