Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 dart 新手,我正在尝试了解如何在 dart 中实现以下 javascript 代码:
$('element1').handsontable(options);
handsontable是我想使用的第三方库。
使用dart:js:
import 'dart:js'; context.callMethod(r'$', ['element1']) .callMethod('handsontable', [new JsObject.jsify(options)]);