解决了 谢谢
这是出错信息。。sublimetext CTRL+B 就出错了。
C:/Ruby193/lib/ruby/gems/1.9.1/gems/aws-sdk-1.51.0/lib/aws/core/option_grammar.rb:337:in `validate': expected hash value for member 1 of option block_device_mappings (AWS::Core::OptionGrammar::FormatError)
#7 楼 @DeathKing thanks
#1 楼 @DeathKing 这个代码你那边能跑通吗? $ ruby hello.rb hello.rb:1: syntax error, unexpected tPOW, expecting ')' def print_all(*keyword_arguments)。 我要是改成一个,可以跑通。
#1 楼 @DeathKing 我试试
解决了。谢谢
#20 楼 @ChanceDoor 怎么可能啊?你看我之前发的截图
#17 楼 @ChanceDoor 这个是可以的,现在问题是在开发者工具里可以找到。但是在右击查看网页源代码找不到。
#15 楼 @ChanceDoor 其实就是最新加入购物车的那个。现在问题是我能在开发者工具的 element 看到 id 为 current_item 的 tr,但是右击查看网页源代码里找不到 current_item 这个 tr.不知道为什么?
#5 楼 @ChanceDoor 那是在在_line_item.html.erb 模板文件中定义的。
<% if line_item == @current_item %>
<% else %> <% end %> <%= line_item.quantity %>× <%= line_item.product.title %> <%= number_to_currency(line_item.total_price) %> 这段代码是定义在_line_item.html.erb 模板文件中的。我在 console 里面打 $('#current_item') 可以找到那个 item,但是我在网页源代码里找不到 current_item 这个 id.我就是对这个不大明白。#1 楼 @messiahxu source 'https://rubygems.org'
gem 'rails', '3.2.6'
gem 'sqlite3'
group :assets do gem 'sass-rails', '~> 3.2.3' gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes # gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3' end
gem 'jquery-rails'
#1 楼 @nightire line_items GET /line_items(.:format) line_items#index POST /line_items(.:format) line_items#create w_line_item GET /line_items/new(.:format) line_items#new t_line_item GET /line_items/:id/edit(.:format) line_items#edit line_item GET /line_items/:id(.:format) line_items#show PUT /line_items/:id(.:format) line_items#update DELETE /line_items/:id(.:format) line_items#destroy carts GET /carts(.:format) carts#index POST /carts(.:format) carts#create new_cart GET /carts/new(.:format) carts#new edit_cart GET /carts/:id/edit(.:format) carts#edit cart GET /carts/:id(.:format) carts#show PUT /carts/:id(.:format) carts#update DELETE /carts/:id(.:format) carts#destroy store_index GET /store/index(.:format) store#index products GET /products(.:format) products#index POST /products(.:format) products#create new_product GET /products/new(.:format) products#new dit_product GET /products/:id/edit(.:format) products#edit product GET /products/:id(.:format) products#show PUT /products/:id(.:format) products#update DELETE /products/:id(.:format) products#destroy store / store#index 这里有 store_index 和 store,请问是指哪个?哪里规定 store_url 的指向?谢谢
#5 楼 @leomayleomay 嗯,看到了。谢谢