javascript - Rails 5.1.2 Ajax 远程 : true not working

标签 javascript jquery ruby-on-rails ajax

我想实现 ajax 来创建帖子,无需给页面充电,也不去观看演出(我按照教程进行操作),但不起作用。

在_form.html.haml中,您可以在表单助手中看到remote:true

= form_for @post,remote: true do |f| 
  - if @post.errors.any?
  #error_explanation
  %h2= "#{pluralize(@post.errors.count, "error")} prohibited this post 
  from being saved:"
    %ul
      - @post.errors.full_messages.each do |message|
        %li= message

  .mdl-textfield.mdl-js-textfield.full-width
    = f.text_area :body, class:"mdl-textfield__input"
    = f.label :body, "Comparte con la Comunidad", class:"mdl-
    textfield__label"
  .actions.text-right
    = f.submit 'Publicar', class:"mdl-button mdl-js-button mdl-button--
    raised mdl-button--colored"

但是,当创建帖子时,应用程序会重定向到最近以 html 格式创建的帖子的显示,它应该保留在表单中。

我不知道 Rails 5.1.2 版本是否有问题,但在 Rails 4 中,只需键入remote: true,应用程序在提交操作后仍保留在表单中。

后置 Controller :

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 = current_user.posts.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 }
      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 }
  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(:body)
end
end

我还有一个 show.js.erb 文件来渲染一个 View ,以便在创建帖子后查看帖子的正文。

show.js.erb

$('#posts').append("<%= render j @post %>")

_post.haml

%article
  =post.body

最佳答案

完成!在 post Controller 中缺少响应 JS 格式,并且 show.js.erb 的渲染方法语法错误

1)后置 Controller :添加format.js

def create
  @post = current_user.posts.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 { render :show }
    else
      format.html { render :new }
      format.json { render json: @post.errors, status: :unprocessable_entity }
      format.js { }
    end
 end

结束

2) show.js.erb:渲染前应该出现的 J

$("posts").append(<%= j render @post %>)

关于javascript - Rails 5.1.2 Ajax 远程 : true not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45244394/

相关文章:

javascript - 如何使mouseenter函数循环

ruby-on-rails - 在 Ruby 或 Rails 中,hash.merge({ :order => 'asc' }) can return a new hash with a new key. 什么可以返回带有已删除键的新散列?

ruby-on-rails - gem 安装在包文件夹(供应商/包)

javascript - 如何使用链接或复选框切换内容集

javascript - '...'在Javascript中是什么意思?

javascript - ValidForm Builder - 如何向 addButton() 对象添加自定义功能

javascript - 尝试在 JS 中运行此代码。

Jquery下拉列表

ruby-on-rails - 无方法错误 : undefined method `call'

javascript - 为什么pre或代码块中的JS代码会执行?