node.jsの勉強を始めたのですが、エラーが出て困っています。
js
1const http = require('http'); 2const fs = require('fs'); 3 4var server = http.createServer(getFromClient); 5 6 7server.listen(3000); 8console.log('Server start!'); 9 10//ここまでメインプログラム================ 11 12//createSeverの処理 13function getFromClient (requst,response) { 14 fs.readFile('./index.html', 'UTF-8', 15 (error, data)=>{ 16 var content = data. 17 replace(/dummy_title/g, 'タイトルです'). 18 replace(/dummy_content/g, 'これがコンテンツです。'); 19 20 response.writeHead(200, {'Content-Type': 'text/html'}); 21 response.write(content); 22 response.end(); 23 } 24 ); 25} 26 27
html
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 5 <title>Index</title> 6</head> 7 8<body> 9 <h1>dummy_title</h1> 10 <p>dummy_content</p> 11</body> 12 13</html>
jsのコードの方にエラーがあるようです。
ターミナルでnode app.js(jsのファイル名)を打つと、
bash
1 replace(/dummy_content/g, 'これがコンテンツです'); 2 3 4SyntaxError: Invalid or unexpected token 5 at wrapSafe (internal/modules/cjs/loader.js:1055:16) 6 at Module._compile (internal/modules/cjs/loader.js:1103:27) 7 at Object.Module._extensions..js (internal/modules/cjs/loader.js:1159:10) 8 at Module.load (internal/modules/cjs/loader.js:988:32) 9 at Function.Module._load (internal/modules/cjs/loader.js:896:14) 10 at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12) 11 at internal/main/run_main_module.js:17:47
と出てエラーになります。
どこが違うのかわからず困っています。
ご回答お願いしますい。
先ほどjsで
replace(/dummy_content/g, 'これがコンテンツです。'); の;をとってみたらうまくいきました。
本を読みながら勉強しておりますが、こちらはバージョンの問題だったのでしょうか?本が間違っていたのでしょうか?
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/29 11:07