0
0

More than 3 years have passed since last update.

個人アプリ(link_to 使い方)

Last updated at Posted at 2020-04-15
<%= link_to new_block_path do %>
    <span class="blinking">press a to start</span>
<% end %>

do〜end を忘れていてページの遷移ができなかった。

GET http://localhost:3000/block/css/css.css net::ERR_ABORTED 404 (Not Found)
記述変更
変更後 link href="/assets/css.css/"   変更前 href="css/css.css"
でエラーは解決

GET http://localhost:3000/block.js net::ERR_ABORTED 404 (Not Found)
記述変更
変更後 script type="text/javascript" src="/assets/block.js"></script
変更前 src="block.js"
でエラーは解決

エラーは解決したが、ゲーム部分の表示がされない

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0