我正在尝试实现一个固定的侧边菜单,用于更新活动页面与活动类的链接。我将滚动间谍HTML5元素放在正文上,但我遇到了问题。有人可以查看我的html文件,看看他们是否可以确定错误并为我提供解决此问题的方法吗?
以下是我的github帐户的链接: https://github.com/thlee1122/profile
以下是html文件中当前导航部分的外观:
Meteor.users.update(
{"profile.website" : "localhost" , "profile.siteVisitors" : {$elemMatch: {"visitorId" : data.chirpVisitorId} } },
{$push: { "profile.siteVisitors.$.messages": {"text" : data.msg, "createdAt" : data.msg.createdAt} } },
function(err, res) {
if (err) {
console.log('failed to push ' + err)
} else {
console.log('success on new push ' + res)
if (res < 1) {
let item = {
"visitorId": data.chirpVisitorId,
"messages": [data.msg]
}
Meteor.users.update(
{"profile.website": "localhost"},
{$push: {'profile.siteVisitors': item}},
function(err, res) {
if (err) {
console.log(err)
} else {
console.log(res + " updated")
}
}
)
}
}
})
&#13;
此github存储库包含html,css和js文件。