Microsoft.AspNetCore.SpaTemplates模板中有Vue项目模板,可以用Asp.NetCore做后端,Vue做前端。
记录遇到的几个坑:
1.组件的ts文件中提示:“TS1328: 作为表达式调用时,无法解析类修饰器的签名”和“TS2769: 没有与此调用匹配的重载。”
解决办法:修改tsconfig.json
文件,在compilerOptions
节增加"strictFunctionTypes": false
2.使用element-ui,编译出错:In ambient enum declarations member initializer must be constant expression
解决办法:
(1)修改package.json
文件,删除typescript依赖的那一行
(2)删除node_modules文件夹
(3)删除package-lock.json
文件 (如果使用的是NPM 5+)
(4)运行npm install typescript@latest --save
(5)运行npm install
https://github.com/swimlane/ngx-datatable/issues/927
3.使用element-ui,编译出错:Module parse failed: XXXXX.woff You may need an appropriate loader to handle this file type.
解决办法:配置webpack对字体文件的处理
修改webpack.config.js
文件,在module.rules中增加一行:
{ test: /\.(ttf|eot|svg|woff|woff2)$/, use: 'url-loader' },
https://cloud.tencent.com/developer/article/1374476