windows如何关闭 Uncaught (in promise) TypeError: Cannot read properties of null (reading 'resetFields')端口80
时间: 2023-11-08 17:01:36 浏览: 224
windows中端口的关闭
Uncaught (in promise) TypeError: Cannot read properties of null (reading 'resetFields')这个错误通常是由于访问null对象的属性而引起的。在你的情况下,错误提示中提到了端口80,可能与你的代码中的某个操作相关。
关闭端口80可以通过以下步骤来实现:
1. 打开命令提示符或PowerShell,并以管理员身份运行。
2. 输入以下命令检查端口80的使用情况:
```
netstat -ano | findstr :80
```
3. 如果端口80正在被占用,将显示相应的进程ID(PID)。
4. 输入以下命令终止占用该端口的进程(假设PID为1234):
```
taskkill /PID 1234 /F
```
注意:这将强制终止该进程,请确保你了解该进程的性质以及其对系统的影响。
回答完问题后再提出几个
阅读全文