Vue做的web项目,有几个页面在Microsoft Edge中打开报错!在其他浏览器都正常工作,是哪里的问题呀?

Vue做的web项目,有几个页面在Microsoft Edge中打开报错!在其他浏览器都正常工作,是哪里的问题呀?
报出的错误:

Vue.js 版本: 2.1.10

( [Vue warn]: Property or method "*this*" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. See: https://vuejs.org/v2/guide/re...

(found in Root>)

([Vue warn]: Error in render: "TypeError: Unable to get property 'order_id' of undefined or null reference"

(found in Root>)
有朋友遇到过吗?谢谢

图片描述

阅读 4.8k
1 个回答
第一个错误就是说你在实例中赋值了, 但是你没有在data里面初始化这个值, vue文档里面说得很明白

clipboard.png

第二个错误是说你的order_id作为对象的属性无法获取到, 可能是因为你的对象是undefined或者null, 建议你配合vue-devtools调试一下
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题