gpt4 book ai didi

javascript - 如何在express和parse中使用app.get内部的app.locals

转载 作者:行者123 更新时间:2023-11-28 01:45:30 24 4
gpt4 key购买 nike

我正在使用express开发一个解析应用程序。我有一个索引文件,它向登录用户和公共(public)用户显示相同的信息,除了登录公共(public)用户和注销登录用户之外。我正在使用 app.locals 来存储标志和登录用户名,但有些它们没有被存储。我的 app.js 代码是

// The homepage renders differently depending on whether user is logged in.
app.get('/', function(req, res) {
if(Parse.User.current()){

Parse.User.current().fetch().then(function(user) {
// Render the user profile information (e.g. email, phone, etc).
name = user.get('username');
});
app.locals({flag :true,name:name});

}else{
app.locals({flag:false, name:''});
}
// Render a public welcome page, with a link to the '/' endpoint.
var ProfessionalUsers = Parse.Object.extend("User");
var query = new Parse.Query(ProfessionalUsers);
query.limit(50);
query.equalTo("usertype", "Professional");
query.find().then(function(profs) {
res.render('index', {
title: "Popular Experts",
profs: profs,
});
});



});

我在索引中编写的代码

<div class='navigation'>
<ul class='navigation-ul'>
<li><a href='/' class='search' id='searchLink' >Search</a></li>
<% if(flag){ %>
<li><a href='/dashboard' class='dashboard' id='dashboardLink' >Dashboard</a></li>
<% } %>
<li><a href='/howitworks' class='how-it-works' id='howItWorksLink'>How it Works</a></li>
<li><a href='/testimonials' class='testimonials' id='testimonialsLink' >Testimonials</a></li>
<li><a href='/faqs' class='faqs' id='faqsLink'>FAQs</a></li>
<% if(flag){ %>
<li><a href='/logout' class='logout' id='logoutLink'>Logout<span class='username'>(<%= name ? name : '' %>)</span></a></li>
<% }else{ %>
<li><a href='/login' class='login-signup' id='navLoginSignupLink'>Login/Signup</a></li>
<% } %>


</ul>

</div>

向专业人士展示的代码

<p><%= title %></p>
<div class='professionals'>

<% for(var i=0;i<profs.length;i++) { %>

<div class='professional'>

<div class='picture-space' onclick = 'location.href = "/user/<%= profs[i].id %>"' style='cursor:pointer'>
<img src='images/default.jpg'/>
</div>
<div class='name-space'><%= profs[i].attributes.username %></div>
<div class='service-space'><%= profs[i].attributes.servicetype %></div>
<div class='linkedin-space'><a href='http://<%= profs[i].attributes.linkedin %>' target='_blank'>Linkedin Profile</a></div>


</div>
<% } %>
</div>

编辑:

这就是我为解决这个问题所做的事情

// The homepage renders differently depending on whether user is logged in.
app.get('/', function(req, res) {

// Render a public welcome page, with a link to the '/' endpoint.
var ProfessionalUsers = Parse.Object.extend("User");
var query = new Parse.Query(ProfessionalUsers);
query.limit(50);
query.equalTo("usertype", "Professional");
query.find().then(function(profs) {
var user = Parse.User.current();
if(user){
user.fetch().then(function(user,error) {
res.render('index',{user:user.toJSON(),profs:profs,title:'Popular Experts'});
});
}else{
res.render('index', {
title: "Popular Experts",
profs: profs,
user:''
});
}


});

});

最佳答案

app.locals 无权访问 req、res 对象。它适用于不会根据请求更改的非动态数据(例如应用程序名称或类似的内容)。我相信您追求的是 res.locals ( http://expressjs.com/api.html#res.locals )

我建议添加一些可以完成您想要的操作的中间件。

您可以仅为您的路线加载它。这将在执行您在该路由中定义的函数之前执行中间件:

function getUserInfo(req, res, next) {
var user_name = "adam"; //make some call here to get the user data

//make 'user_name' variable available in the view
res.locals.user_name = user_name;

next(); //go to the next 'middleware', which is the stuff you defined.

}

//add getUserInfo here as middleware that will run on the '/' route BEFORE your middleware runs. Yours will be executed when 'next()' is called from the middleware function.
app.get('/', getUserInfo, function(req, res) {

关于javascript - 如何在express和parse中使用app.get内部的app.locals,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20377200/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com