方法一: indexOf()
var str = "123"
console.log(str.indexOf("2") != -1); // true
方法二:match()
var str = "123"
var r...
yekong
3年前 (2021-08-12)
喜欢
<script>
import {
get_lists
} from '@/config/api.js'
export default {
data() {
retur...
yekong
3年前 (2021-08-05)
喜欢
var arr = ['one','two'];
var item = arr[0];
arr[0] = arr[1];
arr[1] = item;
...
yekong
3年前 (2021-08-05)
喜欢
const t = '2019-10-17';
const dateFormat = 'YYYY-MM-DD';
//使用moment.js获取当前月份1号
const m = moment().startOf('month')...
yekong
3年前 (2021-07-26)
喜欢
// 获取昨天的开始结束时间
function getYesterday () {
let date = []
date.push(moment().subtract('days', 1).format('YYYY-MM-DD'))
date...
yekong
3年前 (2021-07-24)
喜欢
const t = '2019-10-17';
const dateFormat = 'YYYY-MM-DD';
使用moment.js获取当前月份1号
const m = moment().startOf('month').for...
yekong
3年前 (2021-07-24)
喜欢
使用 Object.keys(object) 可以取出属性名为数组,但会打乱顺序
function get_object_first_attribute(data){
for (var key in data)
return data[key];
}
...
yekong
3年前 (2021-07-17)
喜欢
moment("2020-01-01 00:00:00").unix(); //log:当前时间时间戳 1577808000
...
yekong
3年前 (2021-07-14)
喜欢
function getQueryVariable(variable) {
var query = window.location.search.substring(1);
var vars = query.split("&...
yekong
3年前 (2021-07-14)
喜欢
data: ""{\"session_key\":\"1m5\\\/K\\\/53lyERNXHCQjJAnQ==\",\"openid\":\"o5r1Q5NzOzAJ_diaTlRuTz...
yekong
3年前 (2021-07-10)
喜欢