gpt4 book ai didi

javascript - 从 JavaScript 获取变量到 Dart

转载 作者:行者123 更新时间:2023-11-29 10:18:24 25 4
gpt4 key购买 nike

我的 HTML 文档头中导入了一个 JavaScript 库。我如何访问该库中的对象?

谢谢。

最佳答案

文章 'Using JavaScript from Dart: The js Library' 中描述了与 JavaScript 的互操作

简而言之,您必须:

//import the JS interop lib
import 'package:js/js.dart' as js;

// access the JS context for the page
var context = js.context;

// then use context to access JS object
var canvas = query('#map_canvas');
var googlemaps = js.context.google.maps;

// and create JS objects accessed through proxies
var googlemap = new js.Proxy(googlemaps.Map, canvas);

有关更多详细信息(范围、生命周期、回调等)和示例,请参阅链接文章。

关于javascript - 从 JavaScript 获取变量到 Dart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16880641/

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