欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用vs2022在.net6中调试带typescript的静态页面

程序员文章站 2022-03-07 08:18:22
1、新建一个空的web项目2、设计、建好目录结构其中ts存放typescript源文件,web为网站根目录,scripts/js存放ts生成的js脚本。index.html为静态网页。3、新建ts配置...

1、新建一个空的web项目

使用vs2022在.net6中调试带typescript的静态页面

2、设计、建好目录结构

使用vs2022在.net6中调试带typescript的静态页面

其中ts存放typescript源文件,web为网站根目录,scripts/js存放ts生成的js脚本。

index.html为静态网页。

3、新建ts配置文件tsconfig.json,修改内容为:

{
  "compileroptions": {
    "noimplicitany": false,
    "noemitonerror": true,
    "removecomments": false,
    "sourcemap": true,
    "target": "es5",
    "outdir": "web/scripts/js"//ts编译出js的输出目录
  },
  "include": ["ts/**/*"],//ts所在位置。“**/”为任意层级目录,“?”和“*”为一般通配符。
  "exclude": [
    "node_modules",
    "wwwroot"
  ]
}

4、修改program.cs,指定web文件夹,并支持静态内容。

//var builder = webapplication.createbuilder(args);
var builder = webapplication.createbuilder(new webapplicationoptions
{
    webrootpath = "web"//网站根目录
});
var app = builder.build();
app.usedefaultfiles();//支持默认文件(index.html)
app.usestaticfiles();//启用静态文件支持
//app.mapget("/", () => "hello world!");

app.run();

5、写一个简单的ts文件f1.ts

document.getelementbyid('s1').innerhtml="i'm comming...."

其实这里是简单的js内容而已

6、编译之后,会生成js

使用vs2022在.net6中调试带typescript的静态页面

7、index.html内容如下

<!doctype html>
<html>
<head>
    <meta charset="utf-8" />
    <title></title>
</head>
<body>
    aaa<span id="s1"></span>
    <script src="/scripts/js/f1.js"></script>
</body>
</html>

运行结果:

使用vs2022在.net6中调试带typescript的静态页面

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。