prosemirror error - Applying a mismatched transaction

bug描述

使用 prosemirror 时,dispatch transcation 报错:

代码如下(简化版):

js 复制代码
import { inject } from "vue";
const editorView = inject("editorView");

function handleClick() {
  const view = editorView.value;
  view.dispatch(view.state.tr.deleteSelection());
}

在 prosemirror discuss 找到了相关问题:RangeError: Applying a mismatched transaction。pm 的作者在讨论中解释了这个 error 的含义:

"Mismatched transaction" errors mean that something is trying to dispatch a transaction that doesn't start from the view's current state---I.e. if you create the transaction but then don't synchronously dispatch it, it'd be possible for another transaction to happen in the meantime, which makes your transaction invalid. The rest of the stack trace for the error likely points at the code that's dispatching the transaction on the outdated (or, possibly, completely unrelated) state.

很奇怪,我没有用异步操作啊。顺着报错stack,找到 applyInner 方法。发现当 eq() 返回 false时,会抛出 error

查看 eq 方法,根据注释知道它是用来判断 thisother 是否代表同一块内容。

查看 this,是 Vue的 Reactive 对象,包着 doc Node。

查看 other:是 doc Node 对象

破案了。

解释

我项目用的 vue3。在父组件中把 editorView 用 ref 包了一下,然后 provide 下去。

js 复制代码
const editorView = ref()
provide("editorView", editorView );
onMounted(() => {
  editorView.value = new EditorView();
});

子组件(也就是调用 dispatch 的组件) inject 进来的是这个 ref 对象。
在 vue 3 中被 ref 包着的对象,通过.value 得到的不是原对象,而是原对象的 proxy!

vue2 vs vue3

js 复制代码
const obj ={a:1}
console.log(obj === ref(obj).value)

同样一段代码,在 vue2 环境中是 true,在 vue3 中是 false

平时工作项目里一直用 vue2,这次测试项目装的 vue3,没注意差别
一定要记得,vue2 和 vue3 的响应式原理是有区别的。平时开发不显眼,一旦踩坑就很麻烦

相关推荐
英俊潇洒美少年17 分钟前
JS 事件循环(宏/微任务) ↔ Vue ↔ React** 三者的关系
javascript·vue.js·react.js
Greg_Zhong22 分钟前
Js中异步编程的知识扩展【异步有哪些、如何执行、宏任务和微任务等】
开发语言·javascript
我命由我1234534 分钟前
React - 路由样式丢失问题、路由观察记录、路由传递参数
开发语言·前端·javascript·react.js·前端框架·html·ecmascript
英俊潇洒美少年35 分钟前
React类组件和函数组件的所有核心区别
前端·javascript·react.js
大家的林语冰1 小时前
《前端周刊》React 败北,虾皇登基,OpenClaw 勇夺 GitHub 第一开源软件
前端·javascript·github
533_1 小时前
[vue3] 动态引入本地静态资源(URL)
前端·javascript·vue.js
EliseL1 小时前
SuperMap iClient3D for WebGL 如何实时汇报相机位置天气情况
javascript·3d·html·webgl
EF@蛐蛐堂2 小时前
【vue】新前端工具链Vite+ Alpha
前端·javascript·vue.js
SuperEugene2 小时前
Vue3 组合式函数(Hooks)封装规范实战:命名 / 输入输出 / 复用边界 + 避坑|Vue 组件与模板规范篇
开发语言·前端·javascript·vue.js·前端框架
cmd2 小时前
JS深浅拷贝全解析|常用方法+手写实现+避坑指南(附完整代码)
前端·javascript