如何调用类表单dart库字符串或文件

use*_*413 5 dart dart-mirrors

谁调用类表单dart库字符串或文件?

例如

for-load.dart文件

class TestLoad {
  void requestHandler(){
  }
}
Run Code Online (Sandbox Code Playgroud)

然后是main.dart文件

main(){
   //this get load lib
   var lib = currentMirrorSystem().libraries[Uri.parse('dart:core')];
   //who to invoke class form TestLoad or for-load.dart? 
   //like java Class.forName('TestLoad') , nodejs require('for-load')
}
Run Code Online (Sandbox Code Playgroud)

谢谢!

Nat*_*ial 5

这些符号是库的名称、类的名称以及要动态调用的类的构造函数

foo.dart

library foo_library;

class Foo {
  String bar;
}
Run Code Online (Sandbox Code Playgroud)

调用_class.dart

library new_instance_test;

import "dart:mirrors";
import "foo.dart";

int main() {
  // These symbols are the names of the Library, the Class and the constructor for the Class that you want to dynamically load
  final Symbol librarySymbol = const Symbol("foo_library");
  final Symbol classSymbol = const Symbol("Foo");
  final Symbol constructorSymbol = const Symbol("");

  MirrorSystem mirrorSystem = currentMirrorSystem();

  // Get LibraryMirror for Library foo_library.
  // It returns an iterator, get the first LibraryMirror
  LibraryMirror libraryMirror = mirrorSystem.findLibrary(librarySymbol).first;

  // Get ClassMirror for Class Foo
  ClassMirror classMirror = libraryMirror.declarations[classSymbol];

  // Get the InstanceMirror using the default constructor
  InstanceMirror testClassInstanceMirror = classMirror.newInstance(constructorSymbol, []);

  //Get the reflectee object from the InstanceMirror
  Foo foo = testClassInstanceMirror.reflectee;

  //Set bar and print it
  foo.bar = "foobar";
  print(foo.bar);
}
Run Code Online (Sandbox Code Playgroud)