Closed. This question needs details or clarity。它当前不接受答案。












想改善这个问题吗?添加详细信息,并通过editing this post阐明问题。

6年前关闭。



Improve this question




我正在使用FedEx gem提取跟踪编号,我遇到的问题是,如果生成了跟踪编号但未提取到跟踪编号,该gem返回Fedex::RateError
根据Fedex:RateError继承自StandardError的文档,如果此错误在前端站点上触发,我需要显示一条消息

我在网上环顾四周,发现了一些想法,但希望有人可以指出正确的方向来处理错误,我正在使用Rails 4。

感谢您的任何建议

最佳答案

begin
  # Do your normal happy path view stuff here
rescue Fedex:RateError => error
  # Do your display of the error to the user here
end

10-04 15:54