gpt4 book ai didi

flutter - 避免在生产代码中调用 `print`。 (文档)

转载 作者:行者123 更新时间:2023-12-04 14:35:12 24 4
gpt4 key购买 nike

我开始在我所有的 print 中看到这个警告声明。

print('Foo'); // Warning: Avoid `print` calls in production code. 

最佳答案

这是因为 flutter_lints 隐式添加到 Flutter 2.3.0 之后创建的新项目中的包。
您可以使用以下任何一种解决方案。

  • 要删除该单行中的警告:
    // ignore: avoid_print
    print('Hello World');
  • 删除该文件中的警告
    // ignore_for_file: avoid_print
    print('Hello World');
  • 从整个项目中删除警告。
    开通 analysis_options.yaml文件并添加此 linter 规则:
    include: package:flutter_lints/flutter.yaml

    linter:
    rules:
    avoid_print: false
  • 关于flutter - 避免在生产代码中调用 `print`。 (文档),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69531248/

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