mirror of
https://github.com/eggjs/egg.git
synced 2024-12-04 07:14:30 +00:00
7 lines
167 B
JavaScript
7 lines
167 B
JavaScript
module.exports = function* () {
|
|
var view = this.query.vm ? 'shtml.vm' : 'shtml.html';
|
|
yield this.render(view, {
|
|
foo: '<img onload="xx"><h1>foo</h1>',
|
|
});
|
|
};
|