我对 Vue JS 很陌生。目前,我正在寻找一种呈现服务器发送的 HTML 页面的方法。假设我有一个节点路由器“health”,它发送如下 HTML 文件。
res.sendFile('test.html', { root: path.dirname(require.main.filename) + '/public/' });
在这种情况下,我可以尝试访问该文件并通过 Vue JS 以这种方式呈现它吗?
<div id="app">
<div v-html="reactPage"></div>
</div>
<script>
let sessionId = "";
(function() {
const app = new Vue({
el: '#app',
data: {
reactPage: undefined
},
created() {
fetch('launch/health')
.then(response => {
this.reactPage = response;
})
}
})
})();
这段代码没有按我的预期工作。
白衣非少年
相关分类