缺少 "use strict",即使它已在文件顶部声明
Missing "use strict" even though it's already declared at top of file
我得到了这个 Missing "use strict" statement
,尽管它在文件的顶部贴标了,这让我很困惑。此错误出现两次,第 10 行和第 12 行。
'user strict';
var elasticsearch = require('elasticsearch');
var client = new elasticsearch.Client({
host : 'http://localhost:9200'
});
client.search({
index: 'twitter',
type: 'tweets'
}).then(function (resp) {
var hits = resp.hits.hits;
}, function (err) {
console.trace(err.message);
});
上面的代码大部分是从http://www.fullscale.co/elasticjs/
复制粘贴的
看来你打错了。
应该是
'use strict';
如果您想了解更多关于 'use strict'、如何使用它以及它的实际作用,您可以查看以下页面:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode
我得到了这个 Missing "use strict" statement
,尽管它在文件的顶部贴标了,这让我很困惑。此错误出现两次,第 10 行和第 12 行。
'user strict';
var elasticsearch = require('elasticsearch');
var client = new elasticsearch.Client({
host : 'http://localhost:9200'
});
client.search({
index: 'twitter',
type: 'tweets'
}).then(function (resp) {
var hits = resp.hits.hits;
}, function (err) {
console.trace(err.message);
});
上面的代码大部分是从http://www.fullscale.co/elasticjs/
复制粘贴的看来你打错了。
应该是
'use strict';
如果您想了解更多关于 'use strict'、如何使用它以及它的实际作用,您可以查看以下页面:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode