Skip to content

Commit f036cce

Browse files
Hyunje Junyyx990803
Hyunje Jun
authored andcommitted
feat(ssr): Add 'nonce' option to context for ssr outlet script (#8047)
close #7479
1 parent 9432737 commit f036cce

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

src/server/template-renderer/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,9 @@ export default class TemplateRenderer {
198198
const autoRemove = process.env.NODE_ENV === 'production'
199199
? ';(function(){var s;(s=document.currentScript||document.scripts[document.scripts.length-1]).parentNode.removeChild(s);}());'
200200
: ''
201+
const nonceAttr = context.nonce ? ` nonce="${context.nonce}"` : ''
201202
return context[contextKey]
202-
? `<script>window.${windowKey}=${state}${autoRemove}</script>`
203+
? `<script${nonceAttr}>window.${windowKey}=${state}${autoRemove}</script>`
203204
: ''
204205
}
205206

test/ssr/ssr-template.spec.js

+27
Original file line numberDiff line numberDiff line change
@@ -387,5 +387,32 @@ describe('SSR: template option', () => {
387387
done()
388388
})
389389
})
390+
391+
it('renderToString + nonce', done => {
392+
const interpolateTemplate = `<html><head><title>hello</title></head><body><!--vue-ssr-outlet--></body></html>`
393+
const renderer = createRenderer({
394+
template: interpolateTemplate
395+
})
396+
397+
const context = {
398+
state: { a: 1 },
399+
nonce: '4AEemGb0xJptoIGFP3Nd'
400+
}
401+
402+
renderer.renderToString(new Vue({
403+
template: '<div>hi</div>'
404+
}), context, (err, res) => {
405+
expect(err).toBeNull()
406+
expect(res).toContain(
407+
`<html><head>` +
408+
`<title>hello</title>` +
409+
`</head><body>` +
410+
`<div data-server-rendered="true">hi</div>` +
411+
`<script nonce="4AEemGb0xJptoIGFP3Nd">window.__INITIAL_STATE__={"a":1}</script>` +
412+
`</body></html>`
413+
)
414+
done()
415+
})
416+
})
390417
}
391418
})

0 commit comments

Comments
 (0)