vscode是一个轻量级的文本编辑器,但是它的拓展插件可以让他拓展成功能齐全的IDE,这其中就靠的是tasks.json和launch.json的配置 这两个json文件的相关变量是vscode特有的,但是和其他系统环境变量写法相似的变量,在网上找到相关说明如下:(可以在官网中查,但是没啥时间) 描述文件基础变量 变量名 含义 ${workspaceRoot} 当前打开的文件夹的绝对路径+文件夹的名字 ${workspaceRootFolderName} 当前打开的文件夹的名字 ${file}…
下载字体 下载地址:github:https://github.com/microsoft/cascadia-code/releases 安装字体(windows10) 设置 > 个性化 > 字体 将下载的字体拖拽到指定的位置即可 *在vscode中设置 首选项 > 打开设置(json) > 用json方式打开,配置如下: "editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', m…
{    // See https://go.microsoft.com/fwlink/?LinkId=733558    // for the documentation about the tasks.json format    "version": "0.1.0",    "command": "firefox",    "windows": {        "command"…
When authoring tasks configurations, it is often useful to have a set of predefined common variables. VS Code supports variable substitution inside strings in the tasks.json file and has the following predefined variables: ${workspaceFolder} the path…
快一年了,我竟然还有脸回来..... 过去一年,由于毕设.找工作的原因,发生太多变故,所以一直没更(最主要的原因还是毅力不够...),至于发生了什么事,以后想说的时候再更吧..依然是小白,下面说正事. 1. 下载并安装vs code 这个比较简单,略过. 2. 下载安装C/C++和中文插件 首先下载安装C/C++,就是下面这货 然后下载安装中文插件: 按提示重启vs code,之后按shift + ctrl + P打开命令行,输入 Configure Display Language进行语言设置…
1.执行命令:dotnet> dotnet new console -o myApp 2.tasks.json文件配置: { "version": "2.0.0", "tasks": [ { "label": "build", "command": "dotnet", "type": "process", "ar…
json字符串转json对象:jQuery.parseJSON(jsonStr); json对象转json字符串:JSON.stringify(jsonObj); 根据“|”把字符串变成数组.split("|") 去掉对象最后一个东西slice(0,-1) 去掉字符串第一个substring(1) IE中可能对unicode使用“\uXXXX”格式来编码,可以使用如下来解码: function unicode2Char(str) { return (str.replace(/\\/g,…
MVC5中后台提供Json,前台处理Json,绑定给Dropdownlist的例子: 前端: 我们以前在前端定义了两个控件: <div class="row"> <div class="col-md-1">国家</div> <div class="col-md-11"> @Html.DropDownListFor(model => model.Director.HometownID, MvcE…
http://blog.csdn.net/xiaomu709421487/article/details/51456705 JSON(JavaScript Object Notation): 是一种轻量级的数据交换格式 一.JSON建构有两种结构:对象和数组 1.对象:对象在js中表示为"{}"扩起来的内容,数据结构为 {key:value,key:value,...}的键值对的结构,在面向对象的语言中,key为对象的属性,value为对应的属性值,所以很容易理解,取值方法为 对象.k…
在数据传输过程中,json是以文本,即字符串的形式传递的,而JS操作的是JSON对象,所以,JSON对象和JSON字符串之间的相互转换是关键.例如:JSON字符串:var str1 = '{ "name": "cxh", "sex": "man" }';JSON对象:var str2 = { "name": "cxh", "sex": "man"…