其他分享
首页 > 其他分享> > dart中pubspec文件依赖出错问题

dart中pubspec文件依赖出错问题

作者:互联网

项目场景:

在vscode里面使用了dart来创建dart后端

问题描述:

当配置到pubspec的时候,添加依赖,出现了如下问题。

name:flutter_site_server
description:Fultter web site app

dependencies:
  http:^0.12.2

Error on line 4, column 13 of pubspec.yaml: Mapping values are not allowed here. Did you miss a colon earlier?。
报错原因主要是说我没有添加冒号,但是看代码,明明是有冒号的啊。


原因分析:

最后调试了半天,发现在dart中pubspec.yaml对格式要求极其严格,冒号后面必须有空格,并且还必须格式对齐,所以我就修改了代码,

解决方案:

最后添加好了代码,并且修改好了格式,references:

name: flutter_site_server
description: Fultter web site app

dependencies:
  http: ^0.12.2

然后Ctrl+s保存,自动pub get,运行成功。

标签:冒号,pubspec,site,dart,添加,出错,格式
来源: https://blog.csdn.net/weixin_43105513/article/details/111467616