0

我已经使用 AppJS/NodeJS 和 edge 构建了一个基本的演示应用程序。

这是 app.js 配置文件的相关部分 - 基本上它只是引用外部模块。

.......
window.on('ready', function(){
  console.log("Window Ready");
  window.process = process;
  window.module = module;
  window.dns = require('native-dns');
  window.edge = require('edge');
  window.fs = require('fs');
  window.frame.openDevTools();
  ..........

以下是 index.html 主页面的相关 javascript 部分:

.......
   function myFunction1()
    {
        var question = dns.Question({
           name: 'www.google.com',
            type: 'A'
        });

    var req = dns.Request({
        question: question,
        server: { address: '8.8.8.8', port: 53, type: 'udp' },
        timeout: 1000
    });

    req.on('timeout', function () {
        console.log('Timeout in making request');
    });

    req.on('message', function (err, answer) {
        answer.answer.forEach(function (a) {
            console.log(a.address);
        });
    });

    req.on('end', function () {
        console.log('Finished processing request');
    });

    req.send();

}

 function myFunction2()
    {
  var helloWorld = edge.func('async (input) => { return ".NET Welcomes " + input.ToString(); }');

    helloWorld('JavaScript', function (error, result) {
        if (error) throw error;
        console.log(result);
    });
}

..........

如果我调用使用另一个 nodejs 模块(DNS 查找)的 myFunction1(),它可以完美运行。但是,如果我调用使用边缘的 myFunction2(),我会收到以下错误!

Uncaught TypeError: Property 'func' of object [object Object] is not a function  

我已经为此花费了数小时,但无法弄清楚为什么会发生这种情况!

4

1 回答 1

0

您是否尝试过在 app.js 中(即在 nodejs 中)运行相同的 myFunction2 代码?也许边缘对象上不存在 func 函数。检查文档也许你需要做一些像 window.edge = require('edge').Edge;

或类似的东西来抓住你认为你目前拥有的对象。您还可以执行 console.log(window.edge) 并查看它输出的内容(在节点和运行开发工具的浏览器中(F12))。

/西蒙

于 2013-06-03T08:39:21.423 回答