Express.js - проверяет, подписан ли уже пользователь, и показывает кнопку отмены подписки. - PullRequest
0 голосов
/ 18 февраля 2019

Я успешно сделал это, чтобы пользователи могли следовать друг за другом.Когда вы нажимаете Follow, происходит то, что он передает ваш идентификатор пользователя подписчикам пользователя, на которого вы нажимаете follow, а затем он передает идентификатор пользователя, на которого вы нажимаете follow, в текущем разделе пользователей.

Теперь я пытаюсь сделать так, чтобы при входе на страницу профиля отображалось «Follow», если вы не подписаны на пользователя, и «unfollow», если вы уже подписаны.Я пытаюсь сделать так, чтобы он перебирал подписчиков пользователей, чтобы увидеть, совпадает ли один из идентификаторов с идентификатором текущих пользователей.Но независимо от того, что я делаю, я не могу получить правильный результат.

Мой маршрут для просмотра профиля пользователя:

router.get("/profile/:id", middleware.isLoggedIn, function(req, res) {
    User.findById(req.params.id).populate("followers").exec(function(err, foundUser) {
        if (err) {
            req.flash("error", "Ooops! Seems like there are no users with this id.");
            res.redirect("back");
        }
        else {
            Mappin.find().where("author.id").equals(foundUser._id).exec(function(err, foundMappins) {
                if (err) {
                    req.flash("error", "Something went wrong trying to find the map markers from this user.");
                    res.redirect("back");
                }
                else {
                    Blogpost.find().where("author.id").equals(foundUser._id).exec(function(err, foundBlogposts) {
                        if (err) {
                            req.flash("error", "Something went wrong trying to find the blogposts from this user.");
                            res.redirect("back");
                        }
                        else {
                            Post.find().where("author.id").equals(foundUser._id).exec(function(err, foundPosts) {
                                if (err) {
                                    req.flash("error", "Something went wrong trying to find the posts from this user.");
                                    res.redirect("back");
                                }
                                else {
                                    res.render("webapplication/user/userprofile", { user: foundUser, mappin: foundMappins, blogpost: foundBlogposts, post: foundPosts });
                                }
                            });
                        }
                    });
                }
            });
        }
    });
});

И когда я пытаюсь проверить, уже подписан ли пользователь, я делаю следующее в моих представлениях пользователя:

                                <% user.followers.forEach(function(follower) { %>
                                <% if(currentUser && follower._id.equals(currentUser._id)){  %>
                                    <div class="Button-Collection">
                                        <a href="/profile/<%= user.id %>/follow" class="Button Add" title="Unfollow <%= user.firstName %>">Unfollow</a>
                                    </div>
                                <% } %>
                                <% if (currentUser && !follower._id.equals(currentUser._id)) { %>
                                    <div class="Button-Collection">
                                        <a href="/profile/<%= user.id %>/follow" class="Button Add" title="Follow <%= user.firstName %>">Follow</a>
                                    </div>
                                <% } %>
                                <% }); %>

Моя userSchema:

var mongoose = require("mongoose");
var passportLocalMongoose = require("passport-local-mongoose");

var UserSchema = new mongoose.Schema({
    username: String,
    password: String,
    avatar: String,
    firstName: String,
    lastName: String,
    email: { type: String, unique: true },
    resetPasswordToken: String,
    resetPasswordExpires: Date,
    gender: String,
    createdAt: { type: Date, default: Date.now },
    comments: [ // Allows users to comment on business profiles and allows businesses to showcase their comments
        {
            type: mongoose.Schema.Types.ObjectId,
            ref: "Comment"
        }
    ],
    posts: [ // Allows users to comment on business profiles and allows businesses to showcase their comments
        {
            type: mongoose.Schema.Types.ObjectId,
            ref: "Post"
        }
    ],
    followers: [{
        type: mongoose.Schema.Types.ObjectId,
        ref: 'User'
    }],
    following: [{
        type: mongoose.Schema.Types.ObjectId,
        ref: 'User'
    }],
    blogPosts: [ // Allows admins to see and write blogposts for the website
        {
            type: mongoose.Schema.Types.ObjectId,
            ref: "Blogpost"
        }
    ],
    mapPins: [ // Allows admins to see and write blogposts for the website
        {
            type: mongoose.Schema.Types.ObjectId,
            ref: "Mappin"
        }
    ],
    businessLocations: String,
    businessBiography: String,
    businessLogo: String,
    businessName: String,
    businessWebsite: String,
    businessFacebook: String,
    businessTwitter: String,
    businessYoutube: String,
    businessLinkedin: String,
    isAdmin: { type: Boolean, default: false },
    isBusiness: { type: Boolean, default: false },
    isUser: { type: Boolean, default: false },
    facebookId: String,
    facebookToken: String,
    facebookEmail: String,
    googleId: String,
    googleToken: String,
    googleEmail: String
});

UserSchema.plugin(passportLocalMongoose);

module.exports = mongoose.model("User", UserSchema);

Я также пытался использовать for (var i = 0; i

Я действительно надеюсь, что один из вас сможет помочь мне решить эту загадку, так как я не могу понять это самостоятельно.

1 Ответ

0 голосов
/ 19 февраля 2019

Майкл, попробуйте использовать == для сравнения идентификаторов:

follower._id == currentUser._id

...