- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Ruby on Rails,并且遇到了一个问题,我需要将 MySQL 查询呈现为 JSON。我尝试通过 Google 搜索该问题,并找到了 as_json
方法,该方法并不完全有效。即使我尝试在单独的调用中渲染 sub_object,as_json
方法也不会渲染子对象(IE @item[:sub_item] = item.sub_item.as_json
当 sub_item 到达 View 时仍然会导致 sub_item 为零)。
@initial_posts.push({
:attempted => post.attempted,
:body => post.body,
:correct => post.correct,
:course_id => post.course_id,
:created_at => post.created_at,
:entity_type => post.entity_type,
:file => post.file,
:flagged => post.flagged,
:global => post.global,
:id => post.id,
:incorrect => post.incorrect,
:is_link => post.is_link,
:removed => post.removed,
:subscribed => post.subscribed,
:title => post.title,
:updated_at => post.updated_at,
:upvotes => post.upvotes,
:user_id => post.user_id,
:uuid => post.uuid,
:views => post.views,
:voted => post.voted,
:comment => [],
:quiz_choice => [],
:user => {
:UUID => post.user.UUID,
:account_type => post.user.account_type,
:created_at => post.user.created_at,
:email => post.user.email,
:first_name => post.user.first_name,
:id => post.user.id,
:image => post.user.image,
:image_content_type => post.user.image_content_type,
:image_file_name => post.user.image_file_name,
:image_file_size => post.user.image_file_size,
:image_updated_at => post.user.image_updated_at,
:last_name => post.user.last_name,
:picture => post.user.picture,
:rank => post.user.rank,
:reputation => post.user.reputation,
:updated_at => post.user.updated_at,
:upvotes => post.user.upvotes,
:username => post.user.username
}
})
post.comment.each do |comment|
@initial_posts.last[:comment].push({
:comment => comment.comment,
:course_id => comment.course_id,
:created_at => comment.created_at,
:id => comment.id,
:post_id => comment.post_id,
:updated_at => comment.updated_at,
:upvote => comment.upvote,
:user_id => comment.user_id,
:user => {
:UUID => comment.user.UUID,
:account_type => comment.user.account_type,
:created_at => comment.user.created_at,
:email => comment.user.email,
:first_name => comment.user.first_name,
:id => comment.user.id,
:image => comment.user.image,
:image_content_type => comment.user.image_content_type,
:image_file_name => comment.user.image_file_name,
:image_file_size => comment.user.image_file_size,
:image_updated_at => comment.user.image_updated_at,
:last_name => comment.user.last_name,
:picture => comment.user.picture,
:rank => comment.user.rank,
:reputation => comment.user.reputation,
:updated_at => comment.user.updated_at,
:upvotes => comment.user.upvotes,
:username => comment.user.username
}
})
end
post.quiz_choice.each do |quiz_choice|
@initial_posts.last[:quiz_choice].push({
:choice => quiz_choice.choice,
:created_at => quiz_choice.created_at,
:id => quiz_choice.id,
:is_answer => quiz_choice.is_answer,
:post_id => quiz_choice.post_id,
:updated_at => quiz_choice.updated_at
})
end
如果模型或迁移在任何时候发生更改,这显然会成为一个问题。我怎样才能用更少的、希望更便携的代码来编写这个?
最佳答案
如果我正确理解你的问题,我认为 to_json
是你正在寻找的方法。这样的方法也可以渲染相关对象,例如:
item.to_json(include: :sub_items)
它将生成:
{ id: item_id, attr1: item_attr1_value, sub_items: [{ id: 2, attr2: value2, ... }, ...]
关于mysql - 表达这段代码的更简洁的方式是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34759552/
我希望 Eclipse 调试器观察某个表达式何时变为真(其值发生变化)并在发生这种情况时停止。这在我看来非常有用和基本,所以我认为必须有一种方法可以在 eclipse 中做到这一点(如在 gdb 中)
我正在使用 SPEL 表达式,当我的应用程序启动时,我收到此错误。 ftpOutboundGateway.setRenameExpressionString("'/processed/headers[
我不是 visual studio 程序员,但我需要快速创建一个应用程序来显示图像并使用 slider 操纵它的高度和宽度。我已经完成了快速谷歌和所有关于使用 picturebox(picbox) 作
我在玩弄 Boost Xpressive,但遇到了以下代码片段的问题 #include #include #include using namespace std; using namespac
今年我一直在想,2022年我想做些什么,做哪方面的改变,这周末在家终于想到了! 2021 轻描淡写 年底就一直想对2021年写一篇总结的,起码不得写个千八百字,可是思来想去不知道怎么写,直到最后都没想
这个问题在这里已经有了答案: Italic greek letters / latex-style math in plot titles (2 个回答) 8年前关闭。 我应该怎么做才能让 R 在图例
有没有办法为 jade 模板错误提供自定义异常处理程序? 例如 // server.js app = express(); app.set('view engine', jade); app.loca
我需要了解使用路由在 Express 应用程序中流程的工作原理,我有这些路线 app.use(require('./routes/reportsRouter')); app.use(require('
在一条 route 我有这个: if (elements.length <= 0) { var msg = 'no elements found
完整的代码如下 - 很简单,我想添加、删除或更新帖子 - 当我自己做其中一件事时,它可以工作,但一起它会中断 我在 NodeJS MySQL 中搜索了很多我用它来查询数据库 var mysql = r
下面的CSS选择器有没有更优雅的写法? input:not([type="image"]):not([type="submit"]) 我想匹配所有不是 image 类型或 submit 类型的 HTM
当我尝试全局安装 express-generator 时,它说它成功了。我什至可以在我的全局应用程序列表中看到它但是当我尝试运行 express我遇到标题问题:zsh: command not fou
这不是一个很好的问题,但它是这样的: 我正在结合 DataFrame 的几列进行非常简单的计算,但前提是一列具有特定值。想法是: if df.x==1: df.y = df.y - df.a/
我有一个网站 -https://example.com- 调用 API -https://api.example.com-。该 API 是用 Express 编写的,其使用 CORS package允
当我使用 Express 框架时,我将“.html”文件放入文件夹 View 中,然后将“.js”和“.css”文件放入 public 中。当我运行我的应用程序时,我可以获得 js 和 css,但我无
有一个简单的应用程序 var express = require('express'); var http = require('http'); var path=require('path'); v
我正在构建一个基于express的REST API,我想在用户的请求中使用错误的HTTP动词时发出警告。 目前,我正在添加 app.all('/', (req, res) => { answe
对于用于在 connect/express 中对 session 数据进行加密散列的 key 长度有什么建议吗?我看到了从 60 多个字符串到规范的“键盘猫”的所有内容。 对于我的直接用例,我打算对整
Redis 的HDEL 的时间复杂度是O(N)(其中N 是要移除的字段数)。我有一个用例,其中字段必须为每个操作进行类型转换。我将如何表达新的时间复杂度? O(N*2)? 最佳答案 时间复杂度将相同:
我看到我可以像这样指定 gradle 依赖项: dependencies { compile 'com.fasterxml.jackson.core:jackson-annotations:2
我是一名优秀的程序员,十分优秀!