dedecms在首页调用栏目(公司介绍)内容,一般通过代码: {dede:sql sql='Select content,substring(content,1,300) as content from dede_arctype where id=1'}[field:content function ...
分类:
其他好文 时间:
2021-06-04 19:42:24
阅读次数:
0
ES模块的导入 通过exports {num,function} 这个是导出变量或者是函数 ES导入模块 通过import {num,function} from 'aaa.js' 这个是模块的导入 ##这导入导出很固定,导入导出的名字必须一样 还有一种是通过exports default 这种是不 ...
分类:
其他好文 时间:
2021-06-04 19:29:21
阅读次数:
0
广义javascript ECMAScript + DOM + BOM DOM0 DOM1 DOM2 狭义javascript ECMAScript ES6 ES5 ES3 1. html事件 <div onclik="fn()"></div> function fn() { alert("hell ...
分类:
其他好文 时间:
2021-06-04 19:23:51
阅读次数:
0
/* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. ...
分类:
编程语言 时间:
2021-06-04 18:53:10
阅读次数:
0
Lambda integration with ALB HTTP(s) Lambda function must be registered in a target group ALB Multi-Header Values If a client connect to ALB, we can co ...
分类:
移动开发 时间:
2021-06-03 18:21:09
阅读次数:
0
测试名称 测试内容 Function Test 功能测试—对于各个功能模块进行测试 Scenario Test 场景测试—对一个用户场景测试组成的模块 System Test 系统测试—对整个系统功能的测试 Random Test 随机测试—随机进行测试,查看在探索情况下可能出现的问题 Buddy ...
分类:
其他好文 时间:
2021-06-03 17:56:21
阅读次数:
0
参考:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/this 值: 当前执行上下文(global、function 或 eval)的一个属性,在非严格模式下,总是指向一个对象,在严格模式下可以是 ...
分类:
其他好文 时间:
2021-06-02 20:18:08
阅读次数:
0
// 基于对象封装一个集合 function Set() { // 属性 this.items = {}; // 方法 // add 往集合中添加元素 Set.prototype.add = function (value) { // 先判断是否有这个元素 if (this.has(value)) ...
分类:
Web程序 时间:
2021-06-02 20:02:42
阅读次数:
0
What does it means? For example, if we have setup a API Gateway, REST API, GET method point to a Lambda function with no proxy intergration which retu ...
分类:
移动开发 时间:
2021-06-02 19:55:41
阅读次数:
0
编写一个函数来查找字符串数组中的最长公共前缀: 输入 : ["abca","abc","abca","abc","abcc"] 返回: "abc" /** * * @param strs string字符串一维数组 * @return string字符串 */ function longestCom ...
分类:
Web程序 时间:
2021-06-02 19:25:54
阅读次数:
0