Почему после метода не работает в jQuery? - PullRequest
0 голосов
/ 22 мая 2019

Я пытаюсь начать с AJAX и jQuery в моем приложении Rails, и у меня есть после метода jQuery.

Я хочу, чтобы ссылка на новое сообщение исчезла при нажатии наэто и для частичного появления появляются после нажатия кнопки New Post:

# here's the link from index.html.erb
<%= link_to 'New Post', new_post_path, id: 'new-post', remote: true %>

и контроллера Post

class PostsController < ApplicationController
  before_action :set_post, only: [:show, :edit, :update, :destroy]

  # GET /posts
  # GET /posts.json
  def index
    @posts = Post.all
  end

  # GET /posts/1
  # GET /posts/1.json
  def show
  end

  # GET /posts/new
  def new
    @post = Post.new
  end

  # GET /posts/1/edit
  def edit
  end


  # POST /posts
  # POST /posts.json
  def create
    @post = Post.new(post_params)

    respond_to do |format|
      if @post.save
        format.html { redirect_to @post, notice: 'Post was successfully created.' }
        format.json { render :show, status: :created, location: @post }
        format.js
      else
        format.html { render :new }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

  # PATCH/PUT /posts/1
  # PATCH/PUT /posts/1.json
  def update
    respond_to do |format|
      if @post.update(post_params)
        format.html { redirect_to @post, notice: 'Post was successfully updated.' }
        format.json { render :show, status: :ok, location: @post }
      else
        format.html { render :edit }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /posts/1
  # DELETE /posts/1.json
  def destroy
    @post.destroy
    respond_to do |format|
      format.html { redirect_to posts_url, notice: 'Post was successfully destroyed.' }
      format.json { head :no_content }
      format.js
    end
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_post
      @post = Post.find(params[:id])
    end

    # Never trust parameters from the scary internet, only allow the white list through.
    def post_params
      params.require(:post).permit(:subject, :descripion)
    end
end

и new.js.erb

$('#new-post').hide().after('<%= j render partial: 'posts/form' %>');

Я установилjQuery gem и включил его в application.js, и я отмечаю, что скрыть метод без после работает правильно

//= require rails-ujs
//= require jquery
//= require jquery_ujs
//= require activestorage
//= require turbolinks
//= require_tree .

Что я делаю не так?

1 Ответ

0 голосов
/ 22 мая 2019

Поскольку вы пытаетесь показать форму только для нового сообщения на индексной странице, я предлагаю вам частично отобразить на индексной странице, например:

<button type="button" class="post-btn">New Post</button>
<div class="new_post">
  <%= render partial: 'posts/form', locals: {post: @post} %>
</div>

В вашем индексном действии добавьте:

def index
  ...
  @post = Post.new
end

В вашем файле js:

$('.new_post').hide();
$('.post-btn').on('click', function(){
  $(this).hide();
  $('.new_post').show();
});
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...