- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
-6ren">
在 JWPlayer 上观看完视频后,我想在 UsersController 中执行 ruby 方法来更新用户模型属性
我不确定我做错了什么。
首页.html.erb
<script src="//content.jwplatform.com/players/<%= a = Video.mediakey(Time.now.strftime("%Y%m%d").to_i) %>-3sPMNLmx.js"></script>
<script>
jwplayer().on('complete', function() {
$.ajax("/users/increase_workouts")
});
</script>
用户 Controller
# Adds video to number of workouts
def increase_workouts
if logged_in?
current_user.workouts += 1
else
redirect_to login_url
end
end
路线.rb
Rails.application.routes.draw do
get 'password_resets/new'
get 'password_resets/edit'
get 'sessions/new'
get 'users/new'
get 'videos/new'
get 'videos/index'
root "static_pages#home"
get 'static_pages/about'
get 'static_pages/contact'
get 'static_pages/help'
get 'signup' => 'users#new'
get 'upload' => 'videos#new'
get 'login' => 'sessions#new'
post 'login' => 'sessions#create'
delete 'logout' => 'sessions#destroy'
resources :users do
get :increase_workouts, on: :collection
end
resources :videos
resources :account_activations, only: [:edit]
resources :password_resets, only: [:new, :create, :edit, :update]
end
一切似乎都正常,但它要求一个模板...我不需要模板,我希望它将 current_user.workouts 增加 1。这是我从服务器日志中得到的...
ActionView::MissingTemplate (Missing template users/increase_workouts, application/increase_workouts with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: * "/usr/local/rvm/gems/ruby-2.3.0/gems/web-console-2.0.0.beta3/lib/action_dispatch/templates" * "/home/ubuntu/workspace/app/views" * "/usr/local/rvm/gems/ruby-2.3.0/gems/web-console-2.0.0.beta3/app/views" ): actionview (4.2.2) lib/action_view/path_set.rb:46:in
find'<br/>
find'
actionview (4.2.2) lib/action_view/lookup_context.rb:121:in
actionview (4.2.2) lib/action_view/renderer/abstract_renderer.rb:18:infind_template' actionview (4.2.2)
determine_template' actionview (4.2.2) lib/action_view/renderer/template_renderer.rb:8:in
lib/action_view/renderer/template_renderer.rb:40:in
render'<br/>
render_template' actionview (4.2.2) lib/action_view/renderer/renderer.rb:23:in
actionview (4.2.2) lib/action_view/renderer/renderer.rb:42:in
render' actionview
_render_template'
(4.2.2) lib/action_view/rendering.rb:100:in
actionpack (4.2.2) lib/action_controller/metal/streaming.rb:217:in_render_template' actionview (4.2.2)
render_to_body' actionpack (4.2.2) lib/action_controller/metal/rendering.rb:32:in
lib/action_view/rendering.rb:83:inrender_to_body' actionpack (4.2.2)
render_to_body'
lib/action_controller/metal/renderers.rb:37:in
actionpack (4.2.2) lib/abstract_controller/rendering.rb:25:inrender'
render' actionpack (4.2.2) lib/action_controller/metal/instrumentation.rb:44:in
actionpack (4.2.2) lib/action_controller/metal/rendering.rb:16:in
block (2 levels)
block in ms'
in render' activesupport (4.2.2)
lib/active_support/core_ext/benchmark.rb:12:in
/usr/local/rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:inrealtime' activesupport (4.2.2)
ms' actionpack (4.2.2) lib/action_controller/metal/instrumentation.rb:44:in
lib/active_support/core_ext/benchmark.rb:12:inblock in
cleanup_view_runtime' activerecord (4.2.2) lib/active_record/railties/controller_runtime.rb:25:in
render' actionpack (4.2.2)
lib/action_controller/metal/instrumentation.rb:87:in
cleanup_view_runtime' actionpack (4.2.2)
render'
lib/action_controller/metal/instrumentation.rb:43:in
actionpack (4.2.2) lib/action_controller/metal/implicit_render.rb:10:indefault_render'
send_action' actionpack (4.2.2) lib/abstract_controller/base.rb:198:in
actionpack (4.2.2) lib/action_controller/metal/implicit_render.rb:5:in
process_action' actionpack
process_action' actionpack (4.2.2) lib/abstract_controller/callbacks.rb:20:in
(4.2.2) lib/action_controller/metal/rendering.rb:10:in
block in process_action'<br/>
call'
activesupport (4.2.2) lib/active_support/callbacks.rb:117:in
activesupport (4.2.2) lib/active_support/callbacks.rb:555:inblock (2
call' activesupport (4.2.2) lib/active_support/callbacks.rb:92:in
levels) in compile' activesupport (4.2.2)
lib/active_support/callbacks.rb:505:in_run_callbacks' activesupport
_run_process_action_callbacks' activesupport (4.2.2) lib/active_support/callbacks.rb:81:in
(4.2.2) lib/active_support/callbacks.rb:776:in
run_callbacks' actionpack
process_action'
(4.2.2) lib/abstract_controller/callbacks.rb:19:in
actionpack (4.2.2) lib/action_controller/metal/rescue.rb:29:inprocess_action' actionpack (4.2.2)
block in process_action' activesupport (4.2.2) lib/active_support/notifications.rb:164:in
lib/action_controller/metal/instrumentation.rb:32:inblock in instrument'<br/>
instrument'
activesupport (4.2.2)
lib/active_support/notifications/instrumenter.rb:20:in
activesupport (4.2.2) lib/active_support/notifications.rb:164:ininstrument' actionpack (4.2.2)
process_action' actionpack (4.2.2) lib/action_controller/metal/params_wrapper.rb:250:in
lib/action_controller/metal/instrumentation.rb:30:inprocess_action'
process_action' actionpack (4.2.2) lib/abstract_controller/base.rb:137:in
activerecord (4.2.2)
lib/active_record/railties/controller_runtime.rb:18:in
process' actionview (4.2.2)
process' actionpack (4.2.2) lib/action_controller/metal.rb:196:in
lib/action_view/rendering.rb:30:indispatch' actionpack (4.2.2)
dispatch'
lib/action_controller/metal/rack_delegation.rb:13:in
actionpack (4.2.2) lib/action_controller/metal.rb:237:inblock in
dispatch' actionpack (4.2.2) lib/action_dispatch/routing/route_set.rb:43:in
action' actionpack (4.2.2)
lib/action_dispatch/routing/route_set.rb:74:inserve'<br/>
block in serve' actionpack (4.2.2) lib/action_dispatch/journey/router.rb:30:in
actionpack (4.2.2) lib/action_dispatch/journey/router.rb:43:ineach' actionpack
serve'
(4.2.2) lib/action_dispatch/journey/router.rb:30:in
actionpack (4.2.2) lib/action_dispatch/routing/route_set.rb:819:incall' rack (1.6.4) lib/rack/etag.rb:24:in
call' rack (1.6.4) lib/rack/conditionalget.rb:25:incall' rack (1.6.4)
call' actionpack (4.2.2) lib/action_dispatch/middleware/params_parser.rb:27:in
lib/rack/head.rb:13:incall'<br/>
call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in
actionpack (4.2.2) lib/action_dispatch/middleware/flash.rb:260:in
context'
call'
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in
actionpack (4.2.2) lib/action_dispatch/middleware/cookies.rb:560:incall' activerecord (4.2.2) lib/active_record/query_cache.rb:36:in
call' activerecord (4.2.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in
call' activerecord (4.2.2) lib/active_record/migration.rb:378:in
call' actionpack (4.2.2) lib/action_dispatch/middleware/callbacks.rb:29:in
block in call'<br/>
_run_callbacks' activesupport (4.2.2) lib/active_support/callbacks.rb:776:in
activesupport (4.2.2) lib/active_support/callbacks.rb:88:in
_run_call_callbacks'<br/>
run_callbacks' actionpack (4.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in
activesupport (4.2.2) lib/active_support/callbacks.rb:81:in
call' actionpack
call'
(4.2.2) lib/action_dispatch/middleware/reloader.rb:73:in
actionpack (4.2.2) lib/action_dispatch/middleware/remote_ip.rb:78:incall' web-console (2.0.0.beta3)
middleware_call'
lib/action_dispatch/debug_exceptions.rb:18:in
web-console (2.0.0.beta3) lib/action_dispatch/debug_exceptions.rb:13:incall' actionpack
call' railties (4.2.2) lib/rails/rack/logger.rb:38:in
(4.2.2) lib/action_dispatch/middleware/show_exceptions.rb:30:incall_app' railties
block in call' activesupport (4.2.2) lib/active_support/tagged_logging.rb:68:in
(4.2.2) lib/rails/rack/logger.rb:20:inblock in tagged'<br/>
tagged' activesupport (4.2.2) lib/active_support/tagged_logging.rb:68:in
activesupport (4.2.2) lib/active_support/tagged_logging.rb:26:in
tagged' railties (4.2.2)
call' actionpack (4.2.2) lib/action_dispatch/middleware/request_id.rb:21:in
lib/rails/rack/logger.rb:20:incall' rack
call' rack (1.6.4) lib/rack/runtime.rb:18:in
(1.6.4) lib/rack/methodoverride.rb:22:incall' activesupport (4.2.2)
call' rack (1.6.4) lib/rack/lock.rb:17:in
lib/active_support/cache/strategy/local_cache_middleware.rb:28:in
call' actionpack
call' rack (1.6.4) lib/rack/sendfile.rb:113:in
(4.2.2) lib/action_dispatch/middleware/static.rb:113:incall' railties (4.2.2)
call' railties (4.2.2) lib/rails/application.rb:164:in
lib/rails/engine.rb:518:incall' rack (1.6.4)
call' puma (3.1.0) lib/puma/configuration.rb:227:in
lib/rack/content_length.rb:15:incall' puma (3.1.0)
handle_request' puma (3.1.0) lib/puma/server.rb:406:in
lib/puma/server.rb:561:inprocess_client' puma (3.1.0)
block in run' puma (3.1.0) lib/puma/thread_pool.rb:111:in `block in spawn_thread'
lib/puma/server.rb:271:inRendered /usr/local/rvm/gems/ruby-2.3.0/gems/web-console-2.0.0.beta3/lib/action_dispatch/templates/rescues/missing_template.text.erb (1.3ms)
最佳答案
这有助于了解您期望它做什么以及它实际在做什么。
日志告诉我们出现了异常:ActionView::MissingTemplate。 “缺少模板 users/increase_workouts, application/increase_workouts
”消息告诉您有关缺少 View 模板的一些重要信息,并为您提供期望找到模板的位置。
当您通过发送请求与 Controller 操作对话时,它需要知道如何响应您的请求。按照惯例,Rails 会渲染一个与操作同名的模板,例如index.html.erb
或 index.jbuilder
,但如果是特殊操作,您要么需要创建响应模板,要么告诉 Controller 要做什么渲染
。
在您的 Controller 操作中添加一个锻炼后,类似这样的事情应该会给您一个“成功”响应。
render(json: { message: "锻炼增加"}, status: :ok) 并返回
但您也可以只渲染(status: :ok)并返回
。这里的 :ok
是一种人性化的指示 HTTP 状态代码 200 的方式,您的客户端(页面上的 JS)需要在响应中看到该状态代码。
更多详情,请参阅 http://guides.rubyonrails.org/layouts_and_rendering.html#using-render
关于javascript - 在 Javascript 中执行 ruby 方法 - Ruby on Rails 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38689390/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!