我使用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);
});
}
..........
如果我调用myFunction1()使用另一个nodejs模块(DNS查找),它可以很好地工作。但是,如果我调用使用edge的myFunction2(),我会收到以下错误!
Uncaught TypeError: Property 'func' of object [object Object] is not a function
我已经花了几个小时在这上面,因为无法解决为什么会发生这种情况!
答案 0 :(得分:0)
您是否尝试在app.js中运行相同的myFunction2代码,即在nodejs中运行?也许边缘对象上不存在func函数。检查文档可能你需要做类似的事情 window.edge = require('edge')。Edge;
或类似的东西来抓住你认为你现在拥有的物体。您还可以执行console.log(window.edge)并查看它输出的内容(在节点和浏览器中运行开发工具(F12))。
/ Simon