0

我希望根据是否选中复选框来更改我的任务资源的布尔属性。我被卡住了,因为我不知道该怎么做......在添加这个 AJAX 复选框之前我已经拥有了一切,整个 CRUD,一切都用 rspec 和 capybara 测试并引导。我有以下代码...

意见/任务/show.html.erb

 27      <%= form_for [@project, @task], :remote => true do |f| %>
 28        <%= f.label :completed %>       
 29        <%= f.check_box :completed %>
 30      <% end %>

这个 :completed 是任务的布尔属性。

javascripts/tasks.js.coffee

  8 jQuery ->
  9   $('#task_completed').bind 'change', (event) =>
 10     $.post()

不知道如何完成这个 $.post() 事情以及如何使控制器中的代码工作......到目前为止我只有这个......

控制器/tasks_controller.rb

 1 class TasksController < ApplicationController
  2 
  3   before_filter :authenticate_user!
  4   before_filter :find_project_from_project_id
  5   before_filter :find_task, :only => [:show, :edit, :update]
  6 
  7   def show
  8     @title = @task.name
  9   end
 10 
 11   def new
 12     @title = 'New task'
 13     @task = @project.tasks.build
 14   end
 15 
 16   def create
 17     @task = @project.tasks.build(params[:task])
 18     if @task.save
 19       current_user.tasks.push(@task)
 20       redirect_to [@project, @task], :notice => 'Task created'
 21     else
 22       render 'new'
 23       flash.now[:alert] = 'Task not created'
 24     end
 25   end 
 26     
 27   def edit 
 28     @title = 'Edit task'
 29   end 
 30   
 31   def update
 32     if @task.update_attributes(params[:task])
 33       redirect_to [@project, @task], :notice => 'Task updated'
 34     else
 35       render 'edit'
 36       flash.now[:alert] = 'Task not updated'
 37     end
 38   end 
 39 
 40   private
 41   #controller doesn't respond to these methods as actions
 42   
 43   def find_project_from_project_id
 44     @project = current_user.projects.find(params[:project_id])
 45     rescue ActiveRecord::RecordNotFound
 46       redirect_to projects_path
 47       flash[:alert] = 'Project you were looking for could not be found'
 48   end
 49 
 50   def find_task
 51     @task = @project.tasks.find(params[:id])
 52     rescue ActiveRecord::RecordNotFound
 53       redirect_to project_path(@project)
 54       flash[:alert] = 'Task you were looking for could not be found'
 55   end
 56 
 57 end

另外,对于那些想要更多的人......如何为这个东西编写测试?我应该为此写它们吗?

编辑:经过研究,我发现人们正在这样做......这是要走的路吗?在检查元素时,我可以看到当我更改复选框时正在发出新请求,但布尔值仍然是错误的......

  8 jQuery ->
  9   $('#task_completed').bind 'change', (event) =>
 10     $('#task_completed').parents('form:first').submit()
 11     $('.task_headline').toggleClass('completed_task')
4

3 回答 3

3

这在很多方面都不是一个优雅的解决方案,但它确实有效:)

显示.html.erb

<script>
window.monitorTaskCompletion(1,1)
</script>

任务.coffee

window.monitorTaskCompletion = (project_id, task_id)  ->
    jQuery ->
      $('#task_completed').bind 'change', (event) =>
        $.ajax
          url: "/projects/#{project_id}/tasks/#{task_id}/complete"
          data: {completed: if $('#task_completed').is(':checked') then 1 else 0}
          type: "PUT"

任务控制器.rb

def complete
  @completed = params[:completed].to_i > 0
  @task.complete(@completed)
  respond_to :js
end
于 2012-05-19T17:58:14.340 回答
2

您没有为 $.post 操作提供属性。

尝试做这样的事情:

$('#task_completed').bind('change', function() {
    var url = $(this).closest('form').attr('action');
    var data = {};
    data.task = {};
    data.task.completed = $(this).is(':checked'); 
    $.post({
        url: url,
        data: data
    });
});

正如您在 IRC 会议室中向我解释的那样,这将提供您需要的功能。由于仅在选中复选框时才会发送复选框值,因此无论是否选中复选框,我们都必须设置一个自定义布尔值(由 $(this).is(':checked') 函数实现)。

使用 Firebug 或 Chrome/Opera/Safari 检查器检查 ajax 请求。您可以在 $.post 函数中添加更多功能,例如完成事件的函数。查看有关 ajax 和 $.post 函数的 jQuery 文档:

http://api.jquery.com/jQuery.ajax/

http://api.jquery.com/jQuery.post/

于 2012-05-18T17:37:37.353 回答
0

由于这是一个 ajax 操作,因此您需要在控制器中以不同于通常的方式处理它。

def update
  if @task.update_attributes(params[:task])
    @notice = 'Task updated'
  else
    @notice = 'Task not updated'
  end
end 

在 update.js.erb 视图中,类似:

$(#notice).html('<%= @notice %>')

在 jquery .post() 中,您还应该指定 url 并包含 data 参数,如前所述。

于 2012-05-18T19:42:00.147 回答