上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: stackoverflow上有一个类似的问题 https://stackoverflow.com/questions/29285897/difference-between-for-in-and-for-of-statements //for..of与for..in的区别 var arr = [3, 阅读全文
posted @ 2024-08-15 18:26 katesharing 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 读取属性的方法记一下 //js object的写法 const person = { firstName: "John", lastName: "Doe", age: 50, eyeColor: "blue", fullName: function () { return this.firstNam 阅读全文
posted @ 2024-08-15 18:17 katesharing 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 一、常用的测试写法 //array的写法 var myArray = ["Apple", "Orange", "Banana"]; //一、正常循环写法如下: var fruitFinal3 = "" for (var i = 0; i < myArray.length; i++) { fruitF 阅读全文
posted @ 2024-08-15 17:58 katesharing 阅读(2) 评论(0) 推荐(0) 编辑
摘要: JS写法如下: const myObj = { name: "John", age: 30, cars: [ { name: "Ford", models: ["Fiesta", "Focus", "Mustang"] }, { name: "BMW", models: ["320", "X3", 阅读全文
posted @ 2024-08-15 17:11 katesharing 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 假设建立一个.netcore mvc网站, 在appsettings.json添加如下代码: 如何读取这些配置的数值呢? 法一: 1. 先安装如下包: 2. 然后在HomeController.cs里添加如下代码: 测试结果如下: 法二: 1.先定义一个Model,如下: 2.然后去Startup. 阅读全文
posted @ 2024-06-28 18:04 katesharing 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 一、 使用VS创建 打开Visual Studio,创建新项目,找到Worker Service模板。 二、项目结构说明 创建出来的项目,包含两个主要文件: 1)其中Program.cs文件是应用的启动“引导程序”; 2)另外一个文件是worker.cs文件,在这个文件中,可以编写自己的服务逻辑。 阅读全文
posted @ 2024-06-18 11:58 katesharing 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 一、SC命令是XP系统中功能强大的DOS命令,SC命令能与“服务控制器”和已安装设备进行通讯。 二、SC.exe提供的功能类似于“控制面板”中“管理工具”项中的“服务” 三、SC命令主要的几个功能: 1. 更改服务的启动状态(这是比较有用的一个功能) ,可以设置存储在注册表中的服务属性,以控制如何在 阅读全文
posted @ 2024-06-18 10:36 katesharing 阅读(77) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/44546513/cast-ienumerablet-to-runtime-type 阅读全文
posted @ 2024-05-07 11:20 katesharing 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 父组件: <!-- An example of creating a reusable grid component and using it with external data. --> <script setup> import DemoGrid from '../components/Gri 阅读全文
posted @ 2024-03-07 18:06 katesharing 阅读(20) 评论(0) 推荐(0) 编辑
摘要: <template> <table> <thead> <tr> <th v-for="col in gridColumns" :key="col"> {{ col }}</th> </tr> </thead> <tbody> <tr v-for="(row,index) in gridData" : 阅读全文
posted @ 2024-03-07 18:04 katesharing 阅读(48) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页