如何在Windows中使用Dart的已检查模式启动Dartium / Chrome?

时间:2014-02-09 11:30:50

标签: google-chrome dart dartium

根据文件:

https://www.dartlang.org/docs/dart-up-and-running/contents/ch04-tools-dartium.html

在Mac和Linux中,您可以附加--checked,但这不适用于Windows。

如何在Windows中使用选中的标记启动Dartium?

2 个答案:

答案 0 :(得分:3)

显然,使用DART_FLAGS也适用于Windows。

请参阅https://www.dartlang.org/tools/dartium/#using-command-line-flags

命令标志在Windows上以/为前缀,因此您使用:

C:\path\to\dartium\chrome.exe /DART_FLAGS='--checked' 

答案 1 :(得分:1)

您应该使用DART_FLAGS环境变量:

的Cmd.exe:

$> set DART_FLAGS=--checked
$> C:\path\to\dartium\chrome.exe

的PowerShell:

$> $env:DART_FLAGS="--checked"
$> C:\path\to\dartium\chrome.exe