Vue Computed引起的页面卡死

2024-10-28 15:48:32 2

前端出现了个bug

当请求接口时, 前端就会卡死, 直接无响应.

控制台看到对应请求的Timing一直卡在Initial connection.

将请求单独拿出来放到Postman中请求, 正常响应.

通过控制台Network中请求的Initialor进行断点跟踪, 发现前端实际也是获取到了接口的响应. 页面卡死多半是因为逻辑上死循环了.

启动开发环境进入页面调用, 发现Vue给了一个警告, 大致意思是触发了无限循环.

通过一个个删除元素定位到了引起问题的代码

是computed的两个函数

模拟复现代码如下

<template>
    <button @click="get">GET</button>
    <p v-bind:key="item.d" v-for="item in this.others">{{ item.d }}</p>

    <div>{{ computed_a }}</div>
    <div>{{ computed_b }}</div>
  </div>
</template>
export default {
  name: 'HelloWorld',
  props: {
    msg: String
  },
  data() {
    return {
      rmb_count: 0,
      usd_count: 0,
      others: []
    };
  },
  computed: {
    computed_a: function () {
      this.rmb_count = this.others.reduce((title, item) => {
        return title + item.d
      }, 0);
      this.usd_count = this.others.reduce((title, item) => {
        return title + item.d
      }, 0);

      this.rmb_count = this.rmb_count + this.usd_count
      this.usd_count = this.rmb_count + this.usd_count

      return "new Date().getTime()" + this.rmb_count.toFixed(2) + "  " + this.usd_count.toFixed(2)

    },
    computed_b: function () {
      this.rmb_count = this.others.reduce((title, item) => {
        return title + item.d
      }, 0);
      this.usd_count = this.others.reduce((title, item) => {
        return title + item.d
      }, 0);

      this.rmb_count = this.rmb_count + this.usd_count
      this.usd_count = this.rmb_count + this.usd_count

      return "new Date().getTime()" + this.rmb_count.toFixed(2) + "  " + this.usd_count.toFixed(2)

    }
  },
  methods: {
    get() {
      this.others = [{d: 1.1}, {d: 2.1}, {d: 3.1}, {d: 4.1}]
    }
  }
}

当请求接口更新others时, 触发了computed a/b

然后在computed内, rmb_count/usd_count被更新

因为computedrmb_count/usd_count识别为了依赖项, 所以computed a/b继续被触发, 就这样死循环了

解决方法

rmb_count/usd_count用方法内的变量代替

vue:2.6.12


Vue Computed引起的页面卡死

前端出现了个bug当请求接口时, 前端就会卡死, 直接无响应. 控制台看到对应请求的Timing一直卡在Initial connection.将请求单独拿出来放到Postman中请求, 正常响应.通过控制台Network中请求的Initialor进行断点跟踪, 发现前端实际也是获取到了接口的响应.
2024-10-28

Chrome插件 Popup 与 Content-Scripts通信

popup.jsdocument.getElementById("get").addEventListener("click", function () { chrome.tabs.query({ active: true, currentWindow: true }, function (ta
2023-12-22

Script标签的加载顺序

script标签加载相关的一些属性属性名称解释async对于普通脚本,如果存在 async 属性,那么普通脚本会被并行请求,并尽快解析和执行。简单的说,就是异步执行crossorigin正常的 script 元素将最小的信息传递给 window.onerror,用于那些没有通过标准 CORS 检查的
2023-12-22

Vue.js DOM操作

<template> <input type="button" @click="reply($event)" value="回复"> </template> export default { methods: { replyFun(e) {
2020-03-29

freemarker 时间显示不正常 设置时区

项目在本地开发的时候显示正常,部署上服务器就一直差8个小时,最后发现freemarker官方文档有这样的说明time_zone:时区的名称来显示并格式化时间。 默认情况下,使用JVM的时区。 也可以是 Java 时区 API 接受的值,或者 "JVM default" (从 FreeMarker 2
2020-03-28
IDEA 2019.1 xml 不高亮

IDEA 2019.1 xml 不高亮

前几天更新了idea后,发现xml里的代码都没有了高亮,变得跟记事本一个德性了打开setting ,搜索 File Types,找到xml项, 查看下方的匹配格式,果然没有xml,(idea真是厉害)点击右方的+,输入*.xml,点击ok,解决问题
2020-03-28

npm install 淘宝镜像

npm install --registry=https://registry.npm.taobao.org
2020-03-28
Java中方法的参数传递机制

Java中方法的参数传递机制

来看一段代码 public class Man { private String name; private Integer age; public String getName() { return name; } publi
2020-03-28
基于自定义注解手写权限控制

基于自定义注解手写权限控制

方法一: AOP 方法二: 拦截器项目结构项目依赖<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-w
2020-03-28

Docker 部署 详细全过程 附代码

Docker 部署本站 全过程环境:CentOS7.61. 安装Docker其他版本CentOS可以参考这个https://help.aliyun.com/document_detail/187598.html查看本机内核版本,内核版本需高于 3.10uname -r 确保 yum 包最新yum u
2020-03-28

SpringBoot 启动普通java工程

引入依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>2.0.9</version> </dependency>
2020-03-28

Vue.js DOM操作

<template> <input type="button" @click="reply($event)" value="回复"> </template> export default { methods: { replyFun(e) {
2020-03-29
CentOS7编译调试OpenJDK12

CentOS7编译调试OpenJDK12

1. 下载源码https://hg.openjdk.java.net/jdk/jdk12点击左侧的browse,再点击zip,就可以下载zip格式的源码压缩包。unzip xxx.zip 解压文件2. 安装jdkyum install java-11-openjdk-devel -y3. 运行con
2020-04-23
编写自己的Spring Boot Starter

编写自己的Spring Boot Starter

1.新建一个maven项目命名规则统一是xxx-spring-boot-starter完整pom.xml<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0"
2020-06-29