Autohotkey与数组混淆

时间:2017-03-07 19:05:01

标签: arrays autohotkey

请你帮我解决这个脚本(只是一个小片段):

array := [ "" ]

Loop, 12{
  array[A_Index] := aVariable
  text := array[A_Index]
  MsgBox %text%
}

但消息框是空的,我100%肯定,aVariable包含一些内容(使用MsgBox测试)

谢谢

1 个答案:

答案 0 :(得分:1)

aVariable是空的

app.use(function(req, res, next) {
  res.header('Access-Control-Allow-Origin', '*');
  res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept');
  next();
});