fix(runtime-dom): should remove attribute when binding null to value (#3564)

This commit is contained in:
GU Yiling 2021-05-29 03:48:22 +08:00 committed by GitHub
parent 071986a2c6
commit e3f5dcb99b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View File

@ -9,6 +9,7 @@ describe('runtime-dom: props patching', () => {
// prop with string value should be set to empty string on null values // prop with string value should be set to empty string on null values
patchProp(el, 'id', null, null) patchProp(el, 'id', null, null)
expect(el.id).toBe('') expect(el.id).toBe('')
expect(el.getAttribute('id')).toBe(null)
}) })
test('value', () => { test('value', () => {
@ -17,12 +18,25 @@ describe('runtime-dom: props patching', () => {
expect(el.value).toBe('foo') expect(el.value).toBe('foo')
patchProp(el, 'value', null, null) patchProp(el, 'value', null, null)
expect(el.value).toBe('') expect(el.value).toBe('')
expect(el.getAttribute('value')).toBe(null)
const obj = {} const obj = {}
patchProp(el, 'value', null, obj) patchProp(el, 'value', null, obj)
expect(el.value).toBe(obj.toString()) expect(el.value).toBe(obj.toString())
expect((el as any)._value).toBe(obj) expect((el as any)._value).toBe(obj)
}) })
// For <input type="text">, setting el.value won't create a `value` attribute
// so we need to add tests for other elements
test('value for non-text input', () => {
const el = document.createElement('option')
patchProp(el, 'value', null, 'foo')
expect(el.value).toBe('foo')
patchProp(el, 'value', null, null)
expect(el.value).toBe('')
// #3475
expect(el.getAttribute('value')).toBe(null)
})
test('boolean prop', () => { test('boolean prop', () => {
const el = document.createElement('select') const el = document.createElement('select')
patchProp(el, 'multiple', null, '') patchProp(el, 'multiple', null, '')

View File

@ -33,6 +33,9 @@ export function patchDOMProp(
if (el.value !== newValue) { if (el.value !== newValue) {
el.value = newValue el.value = newValue
} }
if (value == null) {
el.removeAttribute('value')
}
return return
} }