Rails (гибкая веб-разработка с rails 4-е издание) Проблема при загрузке локального сайта, получена ошибка синтаксиса - PullRequest
0 голосов
/ 14 октября 2019

Я новичок в Ruby Rails и пытаюсь создать страницу Rails с помощью гибкого руководства

Когда я следил за страницей, у меня возникла эта проблема. Когда я попытался открыть локальный хост: localhost: 3000, он дал мне это уведомление

C:/Users/x/Desktop/Ruby on rails/y/app/controllers/products_controller.rb:72: syntax error, unexpected ',', expecting '.' or &. or :: or '[' ...).permit(:\title, :description, :image_url, :price) ... ^

Моя строка 72 в файле products_controller.rb равна

params.require(:product).permit(:\title, :description, :image_url, :price)

Мой журнал

SyntaxError (C:/Users/y/Desktop/Ruby on rails/y/app/controllers/products_controller.rb:72: syntax error, unexpected backslash, expecting tSTRING_CONTENT or tSTRING_DBEG or tSTRING_DVAR or tSTRING_END
...ams.require(:product).permit(:\title, :description, :image_u...
...                              ^
C:/Users/y/Desktop/Ruby on rails/y/app/controllers/products_controller.rb:72: syntax error, unexpected ',', expecting '.' or &. or :: or '['
...).permit(:\title, :description, :image_url, :price)
...                              ^):
app/controllers/products_controller.rb:72: syntax error, unexpected backslash, expecting tSTRING_CONTENT or tSTRING_DBEG or tSTRING_DVAR or tSTRING_END
app/controllers/products_controller.rb:72: syntax error, unexpected ',', expecting '.' or &. or :: or '['
app/controllers/products_controller.rb:72: syntax error, unexpected backslash, expecting tSTRING_CONTENT or tSTRING_DBEG or tSTRING_DVAR or tSTRING_END
app/controllers/products_controller.rb:72: syntax error, unexpected ',', expecting '.' or &. or :: or '['
app/controllers/products_controller.rb:72: syntax error, unexpected backslash, expecting tSTRING_CONTENT or tSTRING_DBEG or tSTRING_DVAR or tSTRING_END
app/controllers/products_controller.rb:72: syntax error, unexpected ',', expecting '.' or &. or :: or '['

Я новичок, и очень запутался с этой проблемой. Не могли бы вы мне помочь? Большое спасибо.

1 Ответ

0 голосов
/ 14 октября 2019
params.require(:product).permit(:\title, :description, :image_url, :price)

должно быть

params.require(:product).permit(:title, :description, :image_url, :price)
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...