javascript 速记属性初始值设定项[已关闭]无效

eit6fx6z  于 2023-03-21  发布在  Java
关注(0)|答案(5)|浏览(147)

**已关闭。**此问题为not reproducible or was caused by typos。当前不接受答案。

这个问题是由打字错误或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
去年关闭了。
Improve this question
我用JavaScript为一个node项目写了下面的代码,但是在测试一个模块时遇到了一个错误。我不确定这个错误是什么意思。下面是我的代码:

var http = require('http');
// makes an http request
var makeRequest = function(message) {
 var options = {
  host: 'localhost',
  port = 8080,
  path : '/',
  method: 'POST'
 }
 // make request and execute function on recieveing response
 var request = http.request(options, function(response) {
  response.on('data', function(data) {
    console.log(data);
  });
 });
 request.write(message);
 request.end();
}
module.exports = makeRequest;

当我尝试运行这个模块时,它抛出以下错误:

$ node make_request.js
/home/pallab/Desktop/make_request.js:8
    path = '/',
    ^^^^^^^^^^
SyntaxError: Invalid shorthand property initializer
    at Object.exports.runInThisContext (vm.js:76:16)
    at Module._compile (module.js:542:28)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)
    at Module.runMain (module.js:604:10)
    at run (bootstrap_node.js:394:7)
    at startup (bootstrap_node.js:149:9)
    at bootstrap_node.js:509:3

我不太明白这意味着什么,我能做些什么来解决这个问题。

7cwmlq89

7cwmlq891#

因为它是一个对象,所以为其属性赋值的方法是使用:
=更改为:以修复错误。

var options = {
  host: 'localhost',
  port: 8080,
  path: '/',
  method: 'POST'
 }
ljsrvy3e

ljsrvy3e2#

使用**:而不是使用=**符号来修复错误。

3qpi33ja

3qpi33ja3#

更改= to : to修复错误。

var makeRequest = function(message) {
 var options = {
  host: 'localhost',
  port : 8080,
  path : '/',
  method: 'POST'
 };
7bsow1i6

7bsow1i64#

在选项对象中,您使用“=”符号将值分配给端口,但当使用对象文字创建对象时,我们必须使用“:”来将值分配给对象中的属性,即“{}”,这些花括号。即使当您使用函数表达式或在对象内部创建对象时,您也必须使用“:”符号。例如:

var rishabh = {
        class:"final year",
        roll:123,
        percent: function(marks1, marks2, marks3){
                      total = marks1 + marks2 + marks3;
                      this.percentage = total/3 }
                    };

john.percent(85,89,95);
console.log(rishabh.percentage);

这里我们必须在每个属性后面使用逗号“,”。但是你可以使用另一种样式来创建和初始化对象。

var john = new Object():
john.father = "raja";  //1st way to assign using dot operator
john["mother"] = "rani";// 2nd way to assign using brackets and key must be string
mdfafbf1

mdfafbf15#

使用:代替=
请参阅以下给出错误的示例

app.post('/mews', (req, res) => {
if (isValidMew(req.body)) {
    // insert into db
    const mew = {
        name = filter.clean(req.body.name.toString()),
        content = filter.clean(req.body.content.toString()),
        created: new Date()
    };

Syntex错误:速记属性初始值设定项无效。
然后我用:替换=,解决了这个错误。

app.post('/mews', (req, res) => {
if (isValidMew(req.body)) {
    // insert into db
    const mew = {
        name: filter.clean(req.body.name.toString()),
        content: filter.clean(req.body.content.toString()),
        created: new Date()
    };

相关问题