Do not use"String" as a constructor.

产生原因:

  用new运算符会返回构造的对象,而不是文本值(字符串),并且new 不一定能够成功。

解决方法:

            //var imageFile = new String(fileDialog.fileUrl); //构造告警,因为返回的是String对象,而不是字符串。
            var imageFile = String(fileDialog.fileUrl);

内容扩展:

  帮助文档搜索"Checking Code Syntax",可以查看QTcreator的各种错误和报警解决方案。

posted @ 2022-03-09 11:57  xianyongchao  阅读(314)  评论(0编辑  收藏  举报