SyntaxError:期望的表达式,得到了'<'[了解更多] bignumber.min.js:1

时间:2018-10-05 04:06:18

标签: javascript html node.js blockchain

我知道这可能是基本知识,但是我对此并不陌生,所以请耐心等待我正在尝试通过ubuntu 18.04中的节点JS运行此以太坊Javascript API。当我插入命令节点app.js来启动服务器以运行API中给出的示例时。我还在app.js中包含了html文件名,以便app.js可以指向html文件。但是,当我在控制台选项卡下的浏览器中访问127.0.0.1:3000时,遇到了此错误消息。我们还将所需的其他Java脚本文件保存在同一文件夹中。错误消息以SyntaxError形式给出:期望的表达式,得到了'<'[了解更多] bignumber.min.js:1

请帮助!

   df %>% 
  mutate( x = sequence(rle(
    as.character(count))$lengths))

> df %>% 
+   mutate( x = sequence(rle(
+     as.character(count))$lengths))
  account bin count x
1     123   3     0 1
2     123   6     0 2
3     123   9     2 1
4     123  12     0 1
const http = require('http');
const fs = require('fs');

const hostname = '127.0.0.1';

const port = 3000;

fs.readFile('balance.html',(err,html)=>{
	if(err){

		throw err;

		}



const server = http.createServer((req, res) => {

  res.statusCode = 200;

  res.setHeader('Content-type',  'text/html');

  res.write(html);

  res.end();

});

server.listen(port,hostname,()=> {
    console.log('server started on port ' +port);
});
});

  

SyntaxError:期望的表达式,得到'<'[了解更多]   bignumber.min.js:1

0 个答案:

没有答案