初始化电报常数

时间:2020-06-10 07:33:32

标签: ruby-on-rails telegram-bot

遇到错误:

uninitialized constant WebhooksController::Telegram

在定义为:

的控制器中
class WebhooksController < ApplicationController

def the_action
  [...]
  Telegram::Bot::Client.new(token)
end

如果我将控制器修改为

class WebhooksController < Telegram::Bot::UpdatesController

由于改编建议使用by the telegram-bot宝石,错误就变成:

uninitialized constant Telegram

应用程序为Using telegram_bot 0.0.8。还要注意,自述文件telegram_webhook TelegramController中建议的路由在调用rake路由时也会产生错误

NameError: uninitialized constant TelegramController

这迫使我走了class WebhooksController < ApplicationController的路线

如何正确初始化Telegram常数?

0 个答案:

没有答案