1

我是 duktape 的新手,并试图从脚本文件中读取配置:

var config = 
[
{ ready: true, name: "dev1", on: 8,  off:  9 },
{ ready: true, name: "dev2", on: 10, off: 11 },
{ ready: true, name: "dev3", on: 18, off: 21 },
{ ready: true, name: "dev4", on: 13, off: 17 }
];

duktape 有很好的文档,但我似乎找不到任何我想要完成的例子。

我设法读取了一维数组。(不确定这是否是最好或正确的方法)

// var one_dim = [ "hello", "world", "single", "dimension", "array" ] ;

void init_one_dimension(void) {

  duk_get_prop_string(ctx, -1, "one_dim");

  if(duk_is_array(ctx, -1)) {
    printf("Found array\n");
    duk_enum(ctx, -1, DUK_ENUM_ARRAY_INDICES_ONLY); 

    while (duk_next(ctx, -1 , 0 )) {

      duk_get_prop_index(ctx, -1, 0);
      duk_get_prop_string(ctx, -4, duk_get_string(ctx, -1));
      printf("%s\n", duk_get_string(ctx, -1));
      show_stack(ctx, "STACK");

      duk_pop(ctx); // get_prop_string
      duk_pop(ctx); // get_prop_index
      duk_pop(ctx); // duk_next
    }

    duk_pop(ctx); // duk_enum
    duk_pop(ctx); // duk_get_prop_string
  }
}

多维数组让我望而却步。任何帮助,将不胜感激。

4

1 回答 1

1

顶部的“配置”对象不是多维数组,而是包含字典的数组。因此,使用您已经拥有的枚举代码,您只需要像普通对象属性一样访问键(准备好、名称等)。

duk_get_prop_string

于 2015-05-04T09:57:31.330 回答