dart:js library
Low-level support for interoperating with JavaScript.
You should usually use package:js
instead of this library. For more
information, see the JS interop page.
This library provides access to JavaScript objects from Dart, allowing Dart code to get and set properties, and call methods of JavaScript objects and invoke JavaScript functions. The library takes care of converting between Dart and JavaScript objects where possible, or providing proxies if conversion isn't possible.
This library does not make Dart objects usable from JavaScript, their methods and properties are not accessible, though it does allow Dart functions to be passed into and called from JavaScript.
JsObject is the core type and represents a proxy of a JavaScript object.
JsObject gives access to the underlying JavaScript objects properties and
methods. JsObject
s can be acquired by calls to JavaScript, or they can be
created from proxies to JavaScript constructors.
The top-level getter context provides a JsObject that represents the
global object in JavaScript, usually window
.
The following example shows an alert dialog via a JavaScript call to the
global function alert()
:
import 'dart:js';
main() => context.callMethod('alert', ['Hello from Dart!']);
This example shows how to create a JsObject from a JavaScript constructor and access its properties:
import 'dart:js';
main() {
var object = JsObject(context['Object']);
object['greeting'] = 'Hello';
object['greet'] = (name) => "${object['greeting']} $name";
var message = object.callMethod('greet', ['JavaScript']);
context['console'].callMethod('log', [message]);
}
Proxying and automatic conversion
When setting properties on a JsObject or passing arguments to a JavaScript method or function, Dart objects are automatically converted or proxied to JavaScript objects. When accessing JavaScript properties, or when a Dart closure is invoked from JavaScript, the JavaScript objects are also converted to Dart.
Functions and closures are proxied in such a way that they are callable. A Dart closure assigned to a JavaScript property is proxied by a function in JavaScript. A JavaScript function accessed from Dart is proxied by a JsFunction, which has a JsFunction.apply method to invoke it.
The following types are transferred directly and not proxied:
- Basic types:
null
,bool
,num
,String
,DateTime
TypedData
, including its subclasses likeInt32List
, but notByteBuffer
- When compiling for the web, also:
Blob
,Event
,ImageData
,KeyRange
,Node
, andWindow
.
Converting collections with JsObject.jsify()
To create a JavaScript collection from a Dart collection use the JsObject.jsify constructor, which converts Dart Maps and Iterables into JavaScript Objects and Arrays.
The following expression creates a new JavaScript object with the properties
a
and b
defined:
var jsMap = JsObject.jsify({'a': 1, 'b': 2});
This expression creates a JavaScript array:
var jsArray = JsObject.jsify([1, 2, 3]);
Classes
-
JsArray<
E> - A List that proxies a JavaScript array.
- JsFunction
- A proxy on a JavaScript Function object.
- JsObject
- A proxy on a JavaScript object.
Properties
Functions
-
allowInterop<
F extends Function> (F f) → F -
Returns a wrapper around function
f
that can be called from JavaScript usingpackage:js
JavaScript interop. -
allowInteropCaptureThis(
Function f) → Function -
Returns a wrapper around function
f
that can be called from JavaScript usingpackage:js
JavaScript interop, passing JavaScriptthis
as the first argument.