gpt4 book ai didi

visual-studio - "typescript intellisense"在我的 Razor View 中?

转载 作者:搜寻专家 更新时间:2023-10-30 20:41:16 24 4
gpt4 key购买 nike

我想知道是否有可能在我的 razor View 中获得“typescript intellisense”,就像我在 ts 文件中那样?

这是我的 app.ts 文件(当我输入“this”时,会显示“myExampleMessage”属性):

/// <reference path="Scripts/typings/angularjs/angular.d.ts"/>
'use strict';

var app = angular.module('app', []);

class TestController {
constructor($scope: ng.IScope) {
this.myExampleMessage = "Hello";
}

myExampleMessage: string;
}


这是我的 default.cshtml 文件(当我键入“tController”时,没有显示智能感知):

<!DOCTYPE html> 
<html lang="en" ng-app="app">
<head>
<title>TypeScript HTML App</title>
<script src="Scripts/angular.js"></script>
<script src="app.js"></script>
</head>
<body ng-controller="TestController as tController">
<h1>TypeScript HTML App</h1>
<div id="content">{{tController.myExampleMessage}}</div>
</body>
</html>

我想要的是让 Visual Studio (2013) 了解什么是 tController,并为我提供在此类上定义的属性。在这种情况下,它将是“myExampleMessage”属性。

我做错了什么,或者这不可能吗?

最佳答案

I'm I doing something wrong, or isn't this possible?

目前不支持。

关于visual-studio - "typescript intellisense"在我的 Razor View 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20459899/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com