0

我正在运行 Rails 5.2 和很棒的Ahoy gem,其中 mongoid 作为 ORM。

在主页控制器中,我正在调用current_visit.visitor_token,这会产生以下错误:

MONGODB | ds111336.mlab.com:11336 | heroku_1f375nv7.find | STARTED | 
{"find"=>"ahoy_visits", "filter"=>{"visit_token"=>"4f86bf0d-f694-4a46- 
b1fb-4ff48722e5c5"}, "sort"=>{"_id"=>1}, "limit"=>1, 
"singleBatch"=>true}
MONGODB | ds111336.mlab.com:11336 | heroku_1f375nv7.find | SUCCEEDED | 
0.048124999999999994s
Completed 500 Internal Server Error in 297ms (ActiveRecord: 202.8ms)



NoMethodError (undefined method `visitor_token' for nil:NilClass):

ahoy_visitcookie 中存储的值是b5b4fd64-ec42-4e6d-9740-e394ed4a24da,但 Ahoy 似乎正在搜索不同的值visit_token(如上)。

初始化程序/ahoy.rb:

class Ahoy::Store < Ahoy::DatabaseStore

end

# set to true for JavaScript tracking
Ahoy.api = true
Ahoy.server_side_visits = true

如果我从浏览器中清除网站数据(或在隐身窗口中打开新会话),直到我再等一天(我猜测会话到期)才会发生错误。

我已经搜索了所有代码,无法弄清楚为什么 Ahoy 没有在数据库中创建新的访问记录。

提前感谢您的帮助!

4

1 回答 1

0

使用 Ahoy 2.0,您需要对访问模型进行范围限制 class Ahoy::Visit < ApplicationRecord # code here end - 另一个解决方法是重新安装 Ahoy,它将访问和事件放置在正确的位置。

于 2018-09-12T20:36:08.107 回答