- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我用这个Blog作为在 Ruby on Rails 4.2
上学习嵌套表单
的指南。我尝试使用此指令中的相同步骤在 Post
模型中创建位置嵌套表单。
使用嵌套位置表单创建新的post
后,位置内容正确显示在post 的
显示页面上。但是,当我打开 edit
页面时,位置内容都没有了。仔细查看日志,发现如下信息:
Started GET "/categories/category#name/posts/323/edit"...
Location Load (0.1ms) SELECT "locations".* FROM "locations" WHERE "locations"."post_id" = ? LIMIT 1 [["post_id", 323]]
(0.1ms) begin transaction
SQL (0.4ms) DELETE FROM "locations" WHERE "locations"."id" = ? [["id", 27]]
似乎嵌套形式创建的内容在加载编辑页面时被 SQL 自动删除。
这是我的代码:
class Post < ActiveRecord::Base
belongs_to :user
belongs_to :category
has_one :location, dependent: :destroy
accepts_nested_attributes_for :location, reject_if: lambda { |a| a['street'].blank? },
allow_destroy: true
def to_s
title
end
end
位置模型:
class Location < ActiveRecord::Base
belongs_to :post
has_one :user, through: :post
validates :city, presence: true
validates :zipcode, presence: true,
format: { with: /\A\d{5}\z/i }
end
帖子 Controller :
class Categories::PostsController < ApplicationController
...
def new
@category = Category.friendly.find(params[:category_id])
@post = Post.new
@post.build_location
end
def create
@category = Category.friendly.find(params[:category_id])
@post = current_user.posts.build(post_params)
@post.category = @category
if @post.save
flash[:success] = "You have succesfully created a new post."
redirect_to [@category, @post]
else
flash[:error] = "Error occured. Please try again."
render :new
end
end
def edit
@category = Category.friendly.find(params[:category_id])
@post = Post.find(params[:id])
@post.build_location
end
def update
@category = Category.friendly.find(params[:category_id])
@post = Post.find(params[:id])
if @post.update_attributes(post_params)
flash[:success] = "Post was upated."
redirect_to [@category, @post]
else
flash[:error] = "There was an error saving a post, please try again."
render :new
end
end
...
private
def post_params
params.require(:post).permit(:title, :body, location_attributes: [:id, :street, :city, :zipcode, :_destroy])
end
app/views/posts/_form.html.erb
<%= form_for [@category, @post] do |f| %>
...
<strong>Location:</strong>
<div class="well">
<%= f.fields_for :location do |location| %>
<%= location.label :street %>
<%= location.text_field :street, placeholder: "If you don't want to provide your address, just put 'NA' in this field" %>
<%= location.label :city %>
<%= location.text_field :city %>
<%= location.label :zipcode%>
<%= location.text_field :zipcode %>
<%= location.check_box :_destroy %>
<%= location.label :_destroy, 'remove' %>
<% end %>
</div>
虽然按照我所遵循的说明一切正常,但当我在服务器上测试我的应用程序时,我不断收到“静默”错误。如何使嵌套表单中的现有数据显示在编辑页面上?
欢迎任何见解,并提前致谢!
最佳答案
更新 Controller 中的编辑方法。仅在帖子没有关联位置时构建实例。
@post.build_location if @post.location.blank?
关于ruby-on-rails - Rails 4.2 Nested Forms--SQL在加载 'Edit'页面时自动删除嵌套表单内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32344562/
在查看Thermostat Guide时,我没有提到湿度读数。这些数据可以通过API获得吗?会在以后的版本中吗? 最佳答案 从NestAPI v1.1开始,似乎湿度数据可以作为只读字段使用。 可以在v
我从以下位置获取了授权码 https://home.nest.com/login/oauth2?client_id=CLIENT_ID&state=FOO . 我想获取access_token,但是出
使用1.1.2版本的Nest,似乎至少有3种索引多个文档的方法: IndexMany client.IndexMany(documents, "index_name", "type_name"); 使
我有2个POJO(人和车),其中一个由另一个人引用 @Document(indexName = "person", type = "user") public class Person { @
Nest Protect(烟雾和一氧化碳警报)可以测量温度和湿度,但官方或非官方 API 似乎都不允许访问这些数据。有人在工作吗?任何视线访问这些数据?建议?谢谢! 最佳答案 $infos = (o
自从我得到 Nest 以来,我所想要的就是能够在很长一段时间内汇总我的能量使用情况以寻找模式,主要是满足我的好奇心。当然有每月使用报告,而且网络和设备只能追溯到 10 天。 API 是否公开了这些数据
我在获取和更改 Nest 恒温器提供的一些基本数据时遇到了问题。 使用命令行,我如何获取或更改恒温器上的个别设置或值? 最佳答案 这是几个用户的汇编,解释了如何检索或更改一些基本信息,并添加了我自己的
我和我的一位同事就以下最佳实践问题进行了讨论。 大多数函数/方法都从一些参数检查开始。 我提倡以下风格,避免嵌套。 if (parameter one is ugly) return ERROR; i
我有 4 个表: ChatRooms Participants Messages Users 聊天室有很多参与者 聊天室有很多消息 用户有很多消息 用户有很多参与者 参与者属于用户 消息属于用户 我正
我编写了以下函数并得到如下所示的响应: public async Task ShowMapping(string indexname) { var resu
我正在使用 NEST 为我的对象编制索引,但在序列化时遇到了 Newtonsoft 错误。我的一个对象有一个自引用循环。有没有一种方法可以让我访问 JsonSerializer 并更改它处理自引用的方
设置目标温度会引发如下错误。我正在使用 php curl 来设置温度。任何帮助表示赞赏。 object(stdClass)#72 (2) { ["cmd"]=> stri
我编写了以下函数并得到如下所示的响应: public async Task ShowMapping(string indexname) { var resu
我正在使用 Nest Developer https://developer.nest.com/用于创建 iOS 应用程序的 API。有谁知道如何将 Firebase 框架链接到我的应用程序中?我不断
我是名为 Feather (featherapp.co) 的综合性 Apple TV 应用程序的开发者。我遇到的一个问题是用户希望能够查看他们相机的实时画面。 有没有人确定访问摄像头实时画面的方法?我
免责声明 - 我担心这个问题可能是重复的,因为功能看起来很基本,所以我知道我可能会得到一个骗局。但我找不到有效的解决方案 所以我有一个可观察的数组设置如下 self.meetingAttendees
我正试着给我的模块提供一个令牌。该模块如下所示:。我将AuthGuardModule导入到的父模块如下所示:。而gardConfigProvider本身如下所示:。但我得到一个错误:Error[Exc
我正试着给我的模块提供一个令牌。该模块如下所示:。我将AuthGuardModule导入到的父模块如下所示:。而gardConfigProvider本身如下所示:。但我得到一个错误:Error[Exc
每 10 秒使用一次访问 token 时遇到太多请求错误。在重新阅读文档时,我意识到这是一个禁忌(“为了避免错误,我们建议您以每分钟一次或更短的速度提出请求”)。 有谁知道我会被限制多久? 最佳答案
我使用嵌套 plist 来创建对象结构(CLOS 类型),将嵌套的对象传递给它的部分。我想以迭代方式 append 嵌套的 plist,但因此我想在时间和内存方面高效地完成它。 以下示例显示了由于一次
我是一名优秀的程序员,十分优秀!