是否可以在 sails.js 项目中添加 app.get() ?
Is it possible to add app.get() in sails.js project?
我在当前项目中使用 sails.js v1。我想添加这行代码:
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, '../apply_frontend/FrontEnd/dist/apply-system/index.html'));
});
有人对此有想法吗?谢谢。
不,你不能在sails.js中使用app.get(),因为sails.js默认提供路由文件
配置文件夹。 (https://sailsjs.com/documentation/concepts/routes)
app.get() 仅适用于 express.js,因为我们正在使用 express 构造函数初始化 app 变量。为此,我们需要 require express npm 模块,如果您使用 sails.js.
则不需要该模块
var express = require('express');
const app = express();
app.get();
我在当前项目中使用 sails.js v1。我想添加这行代码:
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, '../apply_frontend/FrontEnd/dist/apply-system/index.html'));
});
有人对此有想法吗?谢谢。
不,你不能在sails.js中使用app.get(),因为sails.js默认提供路由文件 配置文件夹。 (https://sailsjs.com/documentation/concepts/routes)
app.get() 仅适用于 express.js,因为我们正在使用 express 构造函数初始化 app 变量。为此,我们需要 require express npm 模块,如果您使用 sails.js.
则不需要该模块var express = require('express');
const app = express();
app.get();