草稿: JSX 说明书
JSX是类XML语法扩展 to ECMAScript without any defined semantics. It's NOT intended to be implemented by engines or browsers. It's NOT a proposal to incorporate JSX into the ECMAScript spec itself. It's intended to be used by various preprocessors (transpilers) to transform these tokens into standard ECMAScript.
// Using JSX to express UI components.
var dropdown =
<Dropdown>
A dropdown list
<Menu>
<MenuItem>Do Something</MenuItem>
<MenuItem>Do Something Fun!</MenuItem>
<MenuItem>Do Something Else</MenuItem>
</Menu>
</Dropdown>;
render(dropdown);
基本原理
The purpose of this specification is to define a concise and familiar syntax for defining tree structures with attributes. A generic but well defined syntax enables a community of independent parsers and syntax highlighters to conform to a single specification.
Embedding a new syntax in an existing language is a risky venture. Other syntax implementors or the existing language may introduce another incompatible syntax extension.
Through a stand-alone specification, we make it easier for implementors of other syntax extensions to consider JSX when designing their own syntax. This will hopefully allow various new syntax extensions to co-exist.
It is our intention to claim minimal syntactic real estate while keeping the syntax concise and familiar. That way we leave the door open for other extensions.
This specification does not attempt to comply with any XML or HTML specification. JSX is designed as an ECMAScript feature and the similarity to XML is only for familiarity.
语法
JSX extends the PrimaryExpression in the ECMAScript 6th Edition (ECMA-262) grammar:
PrimaryExpression :
- JSXElement
元素
JSXElement :
- JSXSelfClosingElement
- JSXOpeningElement JSXChildrenopt JSXClosingElement
(names of JSXOpeningElement and JSXClosingElement should match)
JSXSelfClosingElement :
- < JSXElementName JSXAttributesopt / >
JSXOpeningElement :
- < JSXElementName JSXAttributesopt >
JSXClosingElement :
- < / JSXElementName >
JSXElementName :
- JSXIdentifier *JSXNamedspacedName
- JSXMemberExpression
JSXIdentifier :
- IdentifierStart
- JSXIdentifier IdentifierPart
- JSXIdentifier NO WHITESPACE OR COMMENT -
- JSXNamespacedName :
JSXIdentifier :
- JSXIdentifier
JSXMemberExpression :
- JSXIdentifier . JSXIdentifier
- JSXMemberExpression . JSXIdentifier
属性
JSXAttributes :
- JSXSpreadAttribute JSXAttributesopt
- JSXAttribute JSXAttributesopt
JSXSpreadAttribute :
- { ... AssignmentExpression }
JSXAttribute :
- JSXAttributeName = JSXAttributeValue
JSXAttributeName :
- JSXIdentifier
- JSXNamespacedName
JSXAttributeValue :
- " JSXDoubleStringCharactersopt "
- ' JSXSingleStringCharactersopt '
- { AssignmentExpression }
- JSXElement
JSXDoubleStringCharacters :
- JSXDoubleStringCharacter
- JSXDoubleStringCharactersopt
JSXDoubleStringCharacter :
- SourceCharacter but not "
JSXSingleStringCharacters :
- JSXSingleStringCharacter
- JSXSingleStringCharactersopt
JSXSingleStringCharacter :
- SourceCharacter but not '
子项
JSXChildren :
- JSXChild
- JSXChildrenopt
JSXChild :
- JSXText
- JSXElement
- { AssignmentExpressionopt }
JSXText :
- JSXTextCharacter JSXTextopt
JSXTextCharacter :
- SourceCharacter but not one of {, <, > or }
空格和注释
JSX uses the same punctuators and braces as ECMAScript. WhiteSpace, LineTerminators and Comments are generally allowed between any punctuators.
解析器实现
- acorn-jsx: A fork of acorn.
- esprima-fb: A fork of esprima.
- jsx-reader: A sweet.js macro.
Transpilers
These are a set of transpilers that all conform to the JSX syntax but use different semantics on the output:
- JSXDOM: Create DOM elements using JSX.
- Mercury JSX: Create virtual-dom VNodes or VText using JSX.
- React JSX: Create ReactElements using JSX.
- NOTE: A conforming transpiler may choose to use a subset of the JSX syntax.
为什么不是模板文字?
ECMAScript 6th Edition (ECMA-262) introduces template literals which are intended to be used for embedding DSL in ECMAScript. Why not just use that instead of inventing a syntax that's not part of ECMAScript?
Template literals work well for long embedded DSLs. Unfortunately the syntax noise is substantial when you exit in and out of embedded arbitrary ECMAScript expressions with identifiers in scope.
// Template Literals
var box = jsx`
<${Box}>
${
shouldShowAnswer(user) ?
jsx`<${Answer} value=${false}>no</${Answer}>` :
jsx`
<${Box.Comment}>
Text Content
</${Box.Comment}>
`
}
</${Box}>
`;
It would be possible to use template literals as a syntactic entry point and change the semantics inside the template literal to allow embedded scripts that can be evaluated in scope:
// Template Literals with embedded JSX
var box = jsx`
<Box>
{
shouldShowAnswer(user) ?
<Answer value={false}>no</Answer> :
<Box.Comment>
Text Content
</Box.Comment>
}
</Box>
`;
However, this would lead to further divergence. Tooling that is built around the assumptions imposed by template literals wouldn't work. It would undermine the meaning of template literals. It would be necessary to define how JSX behaves within the rest of the ECMAScript grammar within the template literal anyway.
Therefore it's better to introduce JSX as an entirely new type of PrimaryExpression:
// JSX
var box =
<Box>
{
shouldShowAnswer(user) ?
<Answer value={false}>no</Answer> :
<Box.Comment>
Text Content
</Box.Comment>
}
</Box>;
为什么不是JXON?
Another alternative would be to use object initializers (similar to JXON). Unfortunately, the balanced braces do not give great syntactic hints for where an element starts and ends in large trees. Balanced named tags is a critical syntactic feature of the XML-style notation.
现有技术
The JSX syntax is similar to the E4X Specification (ECMA-357). E4X is a deprecated specification with deep reaching semantic meaning. JSX partially overlaps with a tiny subset of the E4X syntax. However, JSX has no relation to the E4X specification.
许可证
Copyright (c) 2014, Facebook, Inc. All rights reserved.
This work is licensed under a Creative Commons Attribution 4.0 International License.