Browse Source

fix(ssr): support rendering comment (#9128)

dev
Xin Du (Clark) 6 years ago
committed by Evan You
parent
commit
b06c784b81
  1. 6
      src/server/optimizing-compiler/codegen.js
  2. 13
      test/unit/modules/server-compiler/compiler-options.spec.js

6
src/server/optimizing-compiler/codegen.js

@ -225,7 +225,11 @@ function nodesToSegments (
} else if (c.type === 2) {
segments.push({ type: INTERPOLATION, value: c.expression })
} else if (c.type === 3) {
segments.push({ type: RAW, value: escape(c.text) })
let text = escape(c.text)
if (c.isComment) {
text = '<!--' + text + '-->'
}
segments.push({ type: RAW, value: text })
}
}
return segments

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

@ -0,0 +1,13 @@
import { ssrCompile } from 'web/server/compiler'
describe('ssrCompile options', () => {
it('comments', () => {
const compiled = ssrCompile(`
<div>
<!-- test comments -->
</div>
`, { comments: true })
expect(compiled.render).toContain('<!-- test comments -->')
})
})
Loading…
Cancel
Save