我已经使用exec-maven-frontend插件将节点应用程序集成到现有的Spring MVC项目中,并使用ajax调用从dist文件夹调用index.html,调用内部并运行我的传奇但不调用组件生命周期方法的反应组件,因此不呈现页面。
axios({
url: 'http://localhost:8080/reactapp/dist/index.html',
method: 'GET',
headers: {
'Content-Type' : 'text/html',
'Accept' : 'text/html'
},
data: ''
}).then(response => {
return response;
}).catch( error => {
console.log(error)
return error;
});
编辑:我的意图是能够获取我的反应应用程序的应用程序div并将其附加到我现有的HTML。