JavaScript 상용 동작 (문자열, map, 변환)
24804 단어 JavaScriptjson문자열날짜.바꾸다
문자열 변환 json – JSON. stringify (a)
json 문자열 변환 – JSON. parse (a)
/** : websocket json */
const tempSendContent = {
}
tempSendContent['id'] = 'uuid'
tempSendContent['reqType'] = 'sub' // sub , unsub
tempSendContent['api'] = 'api/market/v1/test' //
tempSendContent['tempTest1'] = 'test1' // 1。。
tempSendContent['tempTest2'] = 'test2' // 2。。
tempSendContent['frequency'] = 1000 //
const sendContent = JSON.stringify(tempSendContent) // object string
const ws = new WebSocket('ws://localhost:9998/test')
ws.send(sendContent)
console.log(tempSendContent) // typeof , object
// {id: "uuid", reqType: "sub", api: "api/market/v1/test", tempTest1: "test1", tempTest2: "test2", …}
console.log(sendContent) // typeof , string
// {"id":"uuid","reqType":"sub","api":"api/market/v1/test","tempTest1":"test1","tempTest2":"test2","frequency":1000}
// , JSON.stringify( object ) string key, "" ,eg. "id","reqType"
문자열 변환 숫자 number
parseFloat
parseFloat("80")
몇 자리 의 소 수 를 보류 하 다.
var num =2.446242342;
num = num.toFixed(2); // 2.45
Math.floor(15.7784514000 * 100) / 100 // 15.77
Number(15.7784514000.toString().match(/^\d+(?:\.\d{0,2})?/))
// 15.77, 10 10.0000
// : , ,
빈 칸 제거 – replace () + 정규 표현 식
var str=" 1223 332 ";
console.log(str.length) // 26
var str_new = str.replace(/\s/ig,'') // / \s / ig , ''
console.log(str_new.length) // 7
원리: replace (/ \ s / ig, ')
.replace(/(^\s*)|(\s*$)/g,'')
js 맵 대상 키, value 가 져 오기
var mapObject = {
id1001: 'xiaoming',
id1002: 'xiaohong'
}
// key value ,
for (var key in mapObject){
var value = mapObject[key]
console.log(value)
}
// , key , var , let , ~~~~~
js 문자열 에 어떤 문자열 이 존재 하 는 지 판단 합 니 다.
var str = '123'
console.log(str.indexOf('3')!= -1 // true
/*
indexOf() ** ** 。
!!!~ , , ~!!!!
, -1
*/
var str = '123'
consolo.log(str.search('3') != -1 // true
/*
search() , 。
, -1。
*/
stringObject.substring(start,stop)
// start 。 , stringObject 。
// stop 。 , stringObject 1。 -- , 。
타임 스탬프 를 날짜 형식 으로 변환 합 니 다.
var date = new Date( ); //
/**
1. ,
2. -> http://www.w3school.com.cn/jsref/jsref_obj_date.asp
*/
date.getFullYear(); // (4 ,1970)
date.getMonth(); // (0-11,0 1 , 1)
date.getDate(); // (1-31)
date.getDay(); // ,monday。。
date.getTime(); // ( 1970.1.1 )
date.getHours(); // (0-23)
date.getMinutes(); // (0-59)
date.getSeconds(); // (0-59)
예:
// yyyy-MM-dd hh:mm:ss
var date = new Date(1398250549490);
Y = date.getFullYear() + '-';
M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
D = date.getDate() + ' ';
h = date.getHours() + ':';
m = date.getMinutes() + ':';
s = date.getSeconds();
console.log(Y+M+D+h+m+s); //
// :2014-04-23 18:55:49
날짜 관련 작업
날짜 형식 을 타임스탬프 로 변환
//
var strtime = '2014-04-23 18:55:49:123';
var date = new Date(strtime); // , , 。
//
var date = new Date(strtime.replace(/-/g, '/'));
// ,
time1 = date.getTime();
time2 = date.valueOf();
time3 = Date.parse(date);
/*
:
、 :
: , 0
( ):
1398250549123
1398250549123
1398250549000
*/
new Date("month dd,yyyy hh:mm:ss");
new Date("month dd,yyyy");
new Date("yyyy/MM/dd hh:mm:ss");
new Date("yyyy/MM/dd");
new Date(yyyy,mth,dd,hh,mm,ss);
new Date(yyyy,mth,dd);
new Date(ms);
:
new Date("September 16,2016 14:15:05");
new Date("September 16,2016");
new Date("2016/09/16 14:15:05");
new Date("2016/09/16");
new Date(2016,8,16,14,15,5); // 0~11
new Date(2016,8,16);
new Date(1474006780);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
기초 정리 - 1문자 (String) 숫자 (Number) 불린 (Boolean) null undefined 심볼 (Symbol) 큰정수 (BigInt) 따옴표로 묶어 있어야 함 Not-A-Number - 숫자 데이터 / 숫자로 표...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.