如何使用 Typescript Express App 渲染 Lit Element Web 组件?
How can I render a Lit Element Web component using Typescript Express App?
我创建了一个 Typescript Express 服务器:
src/server.ts
import express from "express";
import { HomeController } from "./controllers";
const app: express.Application = express();
const port: number = ((process.env.PORT as any) as number) || 3000;
app.use(express.static("static"));
app.use("/", HomeController);
app.listen(port, () => {
// tslint:disable-next-line:no-console
console.log(`Listening at http://localhost:${port}/`);
});
src/controllers/index.ts
import { Request, Response, Router } from "express";
const router: Router = Router();
router.get("/", (req: Request, res: Response) => {
res.send("Hello World");
});
export const HomeController: Router = router;
结构
├───build
│ ├───common
│ ├───components
│ └───controllers
├───src
│ ├───common
│ ├───components
│ └───controllers
└───static
└───images
我试过托管静态文件。前任。 index.html。 via res.send('index.html');
文件已呈现,但我无法使用脚本标签导入元素。由于返回的错误是 Exports is not defined
src/components/card.ts
import { html, LitElement } from "lit-element";
class Card extends LitElement {
protected render() {
return html`
<img src="../../static/images/AS.png" />
`;
}
}
declare global {
interface HTMLElementTagNameMap {
"card-element": Card;
}
}
customElements.define("card-element", Card);
我正在使用 TSC 构建我的应用程序。我手动将我的静态文件夹复制到构建文件夹中使用。我不确定是否有自动复制此文件夹的方法。
我的编译器是否有什么地方做错了,可能会给我错误 Exports is not defined
研究表明它与 CommonJs 有关,但我尝试安装但结果没有改变
tsconfig.json
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"lib": ["es6", "dom"],
"outDir": "./build",
"strict": true,
"moduleResolution": "node",
"typeRoots": ["./modules"],
"esModuleInterop": true,
"skipLibCheck": true
}
}
我通过使用 webpack 捆绑我的代码解决了我的问题。这允许我创建一个 Index.html 导入我的 bundle.js 文件
我创建了一个 Typescript Express 服务器:
src/server.ts
import express from "express";
import { HomeController } from "./controllers";
const app: express.Application = express();
const port: number = ((process.env.PORT as any) as number) || 3000;
app.use(express.static("static"));
app.use("/", HomeController);
app.listen(port, () => {
// tslint:disable-next-line:no-console
console.log(`Listening at http://localhost:${port}/`);
});
src/controllers/index.ts
import { Request, Response, Router } from "express";
const router: Router = Router();
router.get("/", (req: Request, res: Response) => {
res.send("Hello World");
});
export const HomeController: Router = router;
结构
├───build
│ ├───common
│ ├───components
│ └───controllers
├───src
│ ├───common
│ ├───components
│ └───controllers
└───static
└───images
我试过托管静态文件。前任。 index.html。 via res.send('index.html');
文件已呈现,但我无法使用脚本标签导入元素。由于返回的错误是 Exports is not defined
src/components/card.ts
import { html, LitElement } from "lit-element";
class Card extends LitElement {
protected render() {
return html`
<img src="../../static/images/AS.png" />
`;
}
}
declare global {
interface HTMLElementTagNameMap {
"card-element": Card;
}
}
customElements.define("card-element", Card);
我正在使用 TSC 构建我的应用程序。我手动将我的静态文件夹复制到构建文件夹中使用。我不确定是否有自动复制此文件夹的方法。
我的编译器是否有什么地方做错了,可能会给我错误 Exports is not defined
研究表明它与 CommonJs 有关,但我尝试安装但结果没有改变
tsconfig.json
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"lib": ["es6", "dom"],
"outDir": "./build",
"strict": true,
"moduleResolution": "node",
"typeRoots": ["./modules"],
"esModuleInterop": true,
"skipLibCheck": true
}
}
我通过使用 webpack 捆绑我的代码解决了我的问题。这允许我创建一个 Index.html 导入我的 bundle.js 文件