Devise Ahoy跟踪链接访问

时间:2019-06-09 00:56:24

标签: ruby-on-rails ahoy merit-gem

您好,我有一个Rails应用程序,它是一个使用devise,ahoy和merit的封闭社区。

我们有一个称为资源的支架。每个资源都有一个链接

用户模型

class User < ApplicationRecord
  has_merit
  has_many :visits, class_name: “Ahoy::Visit”
end

资源模型

class Resource < ApplicationRecord
  has_rich_text :description
  belongs_to :category
end

控制器

我想使用Ahoy来跟踪单击链接的用户,以便我能为这次访问赢得奖励。

查看

<table>
  <thead>
    <tr>
      <th>Title</th>
      <th>Link</th>
      <th>Category</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @resources.each do |resource| %>
      <tr>
        <td><%= resource.title %></td>
        <td><%= link_to "Learn More", resource.link, class: 'btn btn-dark btn-sm' %></td>
        <td><%= resource.category.name %></td>
        <td><%= link_to 'Show', resource %></td>
        <td><%= link_to 'Edit', edit_resource_path(resource) %></td>
        <td><%= link_to 'Destroy', resource, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

模式

create_table "resources", force: :cascade do |t|
    t.string "title"
    t.string "link"
    t.bigint "category_id", null: false
    t.datetime "created_at", precision: 6, null: false
    t.datetime "updated_at", precision: 6, null: false
    t.index ["category_id"], name: "index_resources_on_category_id"
  end

路线

Rails.application.routes.draw do
  resources :visits
  resources :resources
devise_for :users, controllers: { registrations: 'registrations' }
end

我如何跟踪链接点击并分配点?

2 个答案:

答案 0 :(得分:3)

单击链接后,

let会向visits_controller发出请求。 config / routes.rb     资源:访问

controllers / visits.rb

class VisitsController < ApplicationController
    def create
        Ahoy::Visit.track('click', link_id: params[:resource_id])
    end
end

我假设ahoy.authenticate(user)写在某个地方 让我们添加类资源以将link和link id作为数据attr进行添加,以便我们可以将ajax调用绑定到带有必要数据的访问控制器 查看

<td><%= link_to "Learn More", resource.link, class: 'resource btn btn-dark btn-sm' data: {resource_id: resource.id} %></td>

assets / javascripts / tracker.js

(document).on('turbolinks:load', function() { #or whatever you used to do in your app
    $('a.resource').on('click', function() {
         that = this
         $.ajax({
             url: 'visits',
             method: 'POST',
             data: {resource_id: $(that).data('resource_id')}
         })
    })
})

答案 1 :(得分:2)

我没有用ahoy,所以也许我的帮助可能没有用。

我并不是100%需要这样做,我认为可以通过在资源模型上单击文件来实现,每次用户单击链接时都会对其进行更新。

我会尝试的方法:

在Resource_controller.rb中:

def link
  ahoy.track "Link clicked" if params[:clicked]
  @resource = Resource.find(params[:id])
end

视图中:

<%= link_to "Learn More", resource_link_path(link: resource.link, clicked: true) resource.link, class: 'btn btn-dark btn-sm' %>

如果找到另一个解决方案,请在下面发布您的解决方案!