Skip to content

Commit e38d006

Browse files
committed
feat: improve template expression error message
close #6771
1 parent b7105ae commit e38d006

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

src/compiler/error-detector.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,14 @@ function checkExpression (exp: string, text: string, errors: Array<string>) {
8989
if (keywordMatch) {
9090
errors.push(
9191
`avoid using JavaScript keyword as property name: ` +
92-
`"${keywordMatch[0]}" in expression ${text.trim()}`
92+
`"${keywordMatch[0]}"\n Raw expression: ${text.trim()}`
9393
)
9494
} else {
95-
errors.push(`invalid expression: ${text.trim()}`)
95+
errors.push(
96+
`invalid expression: ${e.message} in\n\n` +
97+
` ${exp}\n\n` +
98+
` Raw expression: ${text.trim()}\n`
99+
)
96100
}
97101
}
98102
}

test/unit/features/options/template.spec.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ describe('Options template', () => {
5656
template: '<div v-if="!@"><span>{{ a"" }}</span><span>{{ do + 1 }}</span></div>'
5757
}).$mount()
5858
expect('Error compiling template').toHaveBeenWarned()
59-
expect('invalid expression: v-if="!@"').toHaveBeenWarned()
60-
expect('invalid expression: {{ a"" }}').toHaveBeenWarned()
61-
expect('avoid using JavaScript keyword as property name: "do" in expression {{ do + 1 }}').toHaveBeenWarned()
59+
expect('Raw expression: v-if="!@"').toHaveBeenWarned()
60+
expect('Raw expression: {{ a"" }}').toHaveBeenWarned()
61+
expect('avoid using JavaScript keyword as property name: "do"').toHaveBeenWarned()
6262
})
6363

6464
it('should not warn $ prefixed keywords', () => {
@@ -75,7 +75,7 @@ describe('Options template', () => {
7575
expect('Error compiling template').toHaveBeenWarned()
7676
expect('invalid v-for alias "1"').toHaveBeenWarned()
7777
expect('invalid v-for iterator "2"').toHaveBeenWarned()
78-
expect('invalid expression: v-for="(1, 2) in a----"').toHaveBeenWarned()
78+
expect('Raw expression: v-for="(1, 2) in a----"').toHaveBeenWarned()
7979
})
8080

8181
it('warn error in generated function (v-on)', () => {

test/unit/modules/compiler/compiler-options.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ describe('compile options', () => {
122122

123123
compiled = compile('<div v-if="a----">{{ b++++ }}</div>')
124124
expect(compiled.errors.length).toBe(2)
125-
expect(compiled.errors[0]).toContain('invalid expression: v-if="a----"')
126-
expect(compiled.errors[1]).toContain('invalid expression: {{ b++++ }}')
125+
expect(compiled.errors[0]).toContain('Raw expression: v-if="a----"')
126+
expect(compiled.errors[1]).toContain('Raw expression: {{ b++++ }}')
127127
})
128128
})

0 commit comments

Comments
 (0)