小编Fer*_*ijl的帖子

如何修复错误TF30063:您无权访问VS2017

我更改了TFS的密码.但是当我尝试重新连接时,我收到TF30063未经授权的错误.

有很多这样的问题,我尝试了从这个解决方案和其他论坛中找到的一切

  • 使用VS浏览器解决此问题
  • 右键单击连接
  • 窗口10管理用户帐户编辑甚至删除
  • 从appdata中删除每个VS缓存文件
  • 在VS中删除了整个连接并试图读取一个新连接
  • 删除了我的所有Internet Explorer cookie,密码缓存等.

他们都没有工作......无法弄清问题是什么.

PS:它在浏览器中运行.

tfs visual-studio-2017

12
推荐指数
2
解决办法
1万
查看次数

变换规模在Safari上表现得很奇怪

我使用Bootstrap 3创建了一个网站.Bootstrap 3包含平面三角形作为glyphicons.但是图标是平的,所以我使用我的拉伸类拉伸它们:

.stretch {
    display: inline-block;
    transform: scale(3,2); /* W3C */
    -webkit-transform: scale(3,2); /* Safari and Chrome */
    -moz-transform: scale(3,2); /* Firefox */
    -ms-transform: scale(3,2); /* IE 9 */
    -o-transform: scale(3,2); /* Opera */
}
Run Code Online (Sandbox Code Playgroud)

它工作得很好,但如果我使用Safari 5,图标看起来很奇怪.(抱歉,我无法直接上传图片).三角形的边是模糊的:

在此输入图像描述

glyphicon的类是:

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
Run Code Online (Sandbox Code Playgroud)

我已经在body类中尝试了这个:

-webkit-transform: translateZ(0px);
Run Code Online (Sandbox Code Playgroud)

我希望你能帮助我,谢谢!

html css safari twitter-bootstrap-3

7
推荐指数
1
解决办法
289
查看次数

ng test没有Http的提供者!错误

我尝试为我的Angular2应用程序进行测试.我还没有制作模拟服务,所以我尝试使用我的正常服务.

确切的错误:

Error: No provider for Http!
    at injectionError (http://localhost:9876/base/src/test.ts:1538:86) [angular]
    at noProviderError (http://localhost:9876/base/src/test.ts:1576:12) [angular]
    at ReflectiveInjector_.Array.concat.ReflectiveInjector_._throwOrNull (http://localhost:9876/base/src/test.ts:3077:19) [angular]
    at ReflectiveInjector_.Array.concat.ReflectiveInjector_._getByKeyDefault (http://localhost:9876/base/src/test.ts:3116:25) [angular]
    at ReflectiveInjector_.Array.concat.ReflectiveInjector_._getByKey (http://localhost:9876/base/src/test.ts:3048:25) [angular]
    at ReflectiveInjector_.Array.concat.ReflectiveInjector_.get (http://localhost:9876/base/src/test.ts:2917:21) [angular]
    at DynamicTestModuleInjector.Array.concat.NgModuleInjector.get (http://localhost:9876/base/src/test.ts:3864:52) [angular]
Run Code Online (Sandbox Code Playgroud)

我要测试的组件的@component是:

@Component({
  selector: 'app-game-board',
  templateUrl: './game-board.component.html',
  styleUrls: ['./game-board.component.css'],
  providers: [GameBoardService]
})
Run Code Online (Sandbox Code Playgroud)

我试图在spec.ts类(测试)中导入HTTPModule,但我无法让它工作.这是spec.ts的代码

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { BrowserModule } from '@angular/platform-browser';
import { HttpModule } from '@angular/http';
import { GameBoardComponent } from './game-board.component';
import { GameBoardService } from "app/services/gameboardservice";

describe('GameBoardComponent', …
Run Code Online (Sandbox Code Playgroud)

karma-jasmine angular

5
推荐指数
1
解决办法
4736
查看次数

将字典添加到字典列表

我有如下代码:

static void Main(string[] args)
{
    List<Dictionary<string, string>> abc = new List<Dictionary<string, string>>();

    Dictionary<string, string> xyz = new Dictionary<string, string>();
    Dictionary<string, string> klm = new Dictionary<string, string>();

    xyz.Add("xyz_1", "4");
    xyz.Add("xyz_2", "5");

    klm.Add("klm_1", "9");
    klm.Add("klm_2", "8");

    abc.Add(xyz);
    xyz.Clear();
    /*after this code xyz clear in my abc list. Why ?*/
    abc.Add(klm);
}
Run Code Online (Sandbox Code Playgroud)

我创建字典列表。然后,我将字典添加到此列表中。但是添加字典后,具有清除功能的字典将为空,而不是从列表中删除。通常,我的“ abc”列表应包含xyz和klm字典及其值。但是运行clearfunction时xyz值计数将为0。我该如何预防该站?

c# dictionary list add

0
推荐指数
1
解决办法
5925
查看次数