PayPal-Ruby-SDK模型名称冲突

PayPal-Ruby-SDK model name conflict

我的应用程序中有一个计划模型。有时我会遇到以下错误。重新启动服务器后,它会消失一段时间。

gem版本(1.6.0)

如何解决?

NoMethodError in Subscriptions#index

undefined method `map' for #<PayPal::SDK::REST::DataTypes::PlanList:0x007fbc494c13c0>
Did you mean?  tap

--

  Rendering subscriptions/index.html.erb within layouts/application
  Rendered subscriptions/index.html.erb within layouts/application (3.3ms)
Completed 500 Internal Server Error in 2145ms (ActiveRecord: 8.3ms)



ActionView::Template::Error (undefined method `map' for #<PayPal::SDK::REST::DataTypes::PlanList:0x007fbc494c13c0>
Did you mean?  tap):
     7:       <div class="field">
     8:         <p class="control has-icons-left is-expanded">
     9:           <%= form.input_field :plan_id,
    10:            collection: @plans.map {|plan| ["#{plan.name} - $#{plan.cost}", plan.id]},
    11:            wrapper_html: { class: ' select is-fullwidth' }, class: 'input', label: false, prompt: 'Select a plan' %>
    12:           <span class="icon is-small is-left">
    13:             <i class="fa fa-bars"></i>

app/views/subscriptions/index.html.erb:10:in `block in _app_views_subscriptions_index_html_erb___836818763133109538_70223330120860'
app/views/subscriptions/index.html.erb:2:in `_app_views_subscriptions_index_html_erb___836818763133109538_70223330120860'

订阅控制器索引操作

def index @plans = Plan.all end

网络控制台

使用命名空间而不是包含模块可以解决问题。

PayPal::SDK::REST::Payment