颤振未找到:'package:html/parser.dart

luk*_*oss 2 html-parsing flutter

我已经尝试在 Flutter 中使用包 Parser HTML,但我尝试编译,返回此错误:

import 'package:flutter/material.dart';
import 'package:scrapy/scrapy.dart';
import 'package:html/parser.dart' as html;
Run Code Online (Sandbox Code Playgroud)

Compiler message:
Error: Could not resolve the package 'html' in 'package:html/parser.dart'.
lib/main.dart:3:8: Error: Not found: 'package:html/parser.dart'
import 'package:html/parser.dart' as html;
Run Code Online (Sandbox Code Playgroud)

只有 html 解析器是错误的

Vir*_*iya 5

你可能没有添加包或没有得到它。

按以下方式添加。

dependencies:
  html: ^0.14.0+3
Run Code Online (Sandbox Code Playgroud)

现在在终端中运行以下命令:

flutter pub get
Run Code Online (Sandbox Code Playgroud)