Skip to content

Commit c2b1cfe

Browse files
Hanks10100yyx990803
authored andcommitted
fix(weex): donot rethrow the captured error on weex platform (#7024)
1 parent 0496115 commit c2b1cfe

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/core/util/env.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
/* @flow */
2+
declare var WXEnvironment: any;
23

34
// can we use __proto__?
45
export const hasProto = '__proto__' in {}
56

67
// Browser environment sniffing
78
export const inBrowser = typeof window !== 'undefined'
9+
export const inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform
10+
export const weexPlatform = inWeex && WXEnvironment.platform.toLowerCase()
811
export const UA = inBrowser && window.navigator.userAgent.toLowerCase()
912
export const isIE = UA && /msie|trident/.test(UA)
1013
export const isIE9 = UA && UA.indexOf('msie 9.0') > 0
1114
export const isEdge = UA && UA.indexOf('edge/') > 0
12-
export const isAndroid = UA && UA.indexOf('android') > 0
13-
export const isIOS = UA && /iphone|ipad|ipod|ios/.test(UA)
15+
export const isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android')
16+
export const isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios')
1417
export const isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge
1518

1619
// Firefox has a "watch" function on Object.prototype...

src/core/util/error.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import config from '../config'
44
import { warn } from './debug'
5-
import { inBrowser } from './env'
5+
import { inBrowser, inWeex } from './env'
66

77
export function handleError (err: Error, vm: any, info: string) {
88
if (vm) {
@@ -40,7 +40,7 @@ function logError (err, vm, info) {
4040
warn(`Error in ${info}: "${err.toString()}"`, vm)
4141
}
4242
/* istanbul ignore else */
43-
if (inBrowser && typeof console !== 'undefined') {
43+
if ((inBrowser || inWeex) && typeof console !== 'undefined') {
4444
console.error(err)
4545
} else {
4646
throw err

0 commit comments

Comments
 (0)