0

嗨,我只是想问一下是否有一种方法可以在 module.exports 中调用循环?

module.exports = {
'GZAIS Create New Asset': function (test) {
  test

  .assert.exists('input#asset_name', 'asset input exists')
  .assert.exists('textarea#asset_description', 'asset description exists')
  .assert.exists('input#asset_type', 'asset type exists')
  .assert.exists('input#date_purchased', 'date purchased exists')
  .assert.exists('.filter-option', 'status exists')
  .assert.exists('input#serial_number', 'Serial Number exists')
  .assert.exists('input#supplier', 'Supplier field exists')
  .assert.exists('input#reason', 'Reason for purchase field exists')
  .done();
}
};

现在这是我在字段存在时断言字段的设计,我想做的是使用 for 循环来避免如此多的重复。

所以它看起来像这样

var assetInput = ['asset_name','asset_description','asset_type','date_purchased','serial_number','supplier','reason'];
module.exports = {
'GZAIS Create New Asset': function (test) {
  test
    for(var i=0; i<assetInput.length; i++){
      .assert.exists('input#'+assetInput[i], assetInput[i] + 'exists')
    }
  .done();
}
};

但问题是这段代码不起作用,你们知道如何在 module.exports 中实现循环吗?

4

1 回答 1

2

据我所知,这只是一个简单的语法错误。你test前面少了一个

.assert.exists('input#'+assetInput[i], assetInput[i] + 'exists')

这必须变成:

test.assert.exists('input#'+assetInput[i], assetInput[i] + 'exists')

于 2014-01-28T08:37:15.087 回答