gpt4 book ai didi

dart - 如何从 Javascript 调用 Dart 函数?

转载 作者:行者123 更新时间:2023-12-04 05:06:22 27 4
gpt4 key购买 nike

我想从 Javascript 中调用 Dart 函数。

我想使用 dart2js 编译一个包含 Dart 函数的 Dart 脚本(版本 1.1.3)然后加载生成的 .js将文件放入 Javascript 环境并从 Javascript 调用该函数。

类似于调用 myHyperSuperMegaFunction下面来自Javascript。

import 'dart:js' as js;

int myHyperSuperMegaFunction(int a, int b) {
return a + b;
}

main() {
js.context['myHyperSuperMegaFunction'] = new js.JsFunction.withThis(myHyperSuperMegaFunction);
}

我尝试用 dart2js 编译以上内容并加载生成的 .js文件到 Chrome。变量 myHyperSuperMegaFunction注册并定义为

function () {
return _call(f, captureThis, this, Array.prototype.slice.apply(arguments));
}

但是,当我调用 myHyperSuperMegaFunction(2,3)从 Chrome Javascript 控制台我收到以下错误 NoSuchMethodError : method not found: 'Symbol("call")' Receiver: Instance of '(){this.$initialize' Arguments: [Instance of 'Window', 2, 3]

最佳答案

您不需要使用 new js.JsFunction.withThis .在您的情况下,只需使用:

js.context['myHyperSuperMegaFunction'] = myHyperSuperMegaFunction;

供您引用 new js.JsFunction.withThis当你需要使用 this 时必须使用Js 上下文。在您的错误中,您可以看到第一个参数是 Instance of 'Window'这是Js中的全局上下文。

关于dart - 如何从 Javascript 调用 Dart 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21936318/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com