React JSX 常量定義與使用

2021-08-01 21:32:11 字數 651 閱讀 2617

//user是定義資料

const user = ;

//格式化資料

function formatname(user)

//拼裝資料

const element = ( )

//渲染資料

reactdom.render(

element,

document.getelementbyid("root")

)

1.對於const表示constant的簡寫也就是常量的意思

2. 資料定義部分,細心同學會發現這個不就是json格式的資料3.對於函式和json資料的都是{} 號,對於與html組裝的資料變數是()

4.對於呼叫函式也是用{}號引起來

5.渲染的資料element必須是html的相關元素,不能普通字串。

6.沒有變數型別,變數既可以表示json資料,也可以表示html碎片

總體理解就是資料和展現形式進行區別開來

nf hook ops中使用常量定義

supported address families define af unspec 0 define af unix 1 unix domain sockets define af local 1 posix name for af unix define af inet 2 internet ...

指標常量與常量指標以及typedef定義的指標

一 指標常量與常量指標。char string 4 abc 常量指標 const char c1 string c1 常量指標可以改變其指向 指標常量 char const c2 string c2 指標常量可以改變其指向的值的內容 二 typedef定義的指標型別。typedef char pst...

iOS中關於巨集定義與常量的使用

現在在做的這個產品,由於需求不斷的新增,工程越來越大,編譯速度是越來越慢。之前就看過帖子 使用巨集定義過多的話,隨著工程越來越大,編譯速度會越來越慢。static cgfloat const klogoimagewidth 100 logo寬度 static cgfloat const klogoi...