이 글은 주로 vue 컴포넌트의 jsx 구문의 구체적인 사용법을 소개합니다. 내용이 꽤 좋아서 지금 공유하고 참고하겠습니다.
더 복잡한 vue 구성 요소를 작성하기 위해 렌더링 기능을 사용하면 가독성과 유지 관리성이 떨어지며 jsx를 사용하면 템플릿에 더 가까운 구문으로 돌아갑니다. 바벨 변환기는 jsx를 렌더링을 위한 렌더링 함수로 변환합니다. ㅋㅋㅋ
npm install\ babel-plugin-syntax-jsx\ babel-plugin-transform-vue-jsx\ babel-helper-vue-jsx-merge-props\ babel-preset-env\ --save-dev
기본 예
이스케이프 처리 전{ "presets": ["env"], "plugins": ["transform-vue-jsx"] }
번역 후
<p id="foo">{this.text}</p>참고:
h
함수는 vue 인스턴스의 $createElement
메서드입니다. jsx 범위 내에 존재해야 하며 다음과 같이 렌더링 함수의 첫 번째 매개변수로 전달되어야 합니다.
h('p', { attrs: { id: 'foo' } }, [this.text])
H 함수는 자동으로 주입됩니다.
3.4.0부터, ES2015 사용 구문으로 선언된 메서드와getter
접근자(function
키워드 또는 화살표 함수를 사용하는 경우 제외)에서 babel은 자동으로 h
( const h = this.$createElement
) 함수이므로 (h) 매개변수를 생략할 수 있습니다.
render (h) { // <-- h 函数必须在作用域内 return <p id="foo">bar</p> }Vue JSX와 React JSX 비교
h
函数为vue实例的$createElement
方法,必须存在于jsx的作用域中,在渲染函数中必须以第一个参数传入,如:
Vue.component('jsx-example', { render () { // h 会自动注入 return <p id="foo">bar</p> }, myMethod: function () { // h 不会注入 return <p id="foo">bar</p> }, someOtherMethod: () => { // h 不会注入 return <p id="foo">bar</p> } }) @Component class App extends Vue { get computed () { // h 会自动注入 return <p id="foo">bar</p> } }
自动注入h函数
从3.4.0开始,在用ES2015语法声明的方法和getter
访问器中(使用function
关键字或箭头函数除外),babel会自动注入h
(const h = this.$createElement
)函数,所以可以省略(h)参数。
render (h) { return h('p', { // 组件props props: { msg: 'hi' }, // 原生HTML属性 attrs: { id: 'foo' }, // DOM props domProps: { innerHTML: 'bar' }, // 事件是嵌套在`on`下面的,所以将不支持修饰符,如:`v-on:keyup.enter`,只能在代码中手动判断keyCode on: { click: this.clickHandler }, // For components only. Allows you to listen to // native events, rather than events emitted from // the component using vm.$emit. nativeOn: { click: this.nativeClickHandler }, // class is a special module, same API as `v-bind:class` class: { foo: true, bar: false }, // style is also same as `v-bind:style` style: { color: 'red', fontSize: '14px' }, // other special top-level properties key: 'key', ref: 'ref', // assign the `ref` is used on elements/components with v-for refInFor: true, slot: 'slot' }) }
Vue JSX 和 React JSX对比
首先, Vue2.0 的vnode 格式与react不同,createElement
函数的第二个参数是一个数据对象,接受一个嵌套的对象,每一个嵌套对象都会有对应的模块处理。
Vue2.0 render语法
render (h) { return ( <p // normal attributes or component props. id="foo" // DOM properties are prefixed with `domProps` domPropsInnerHTML="bar" // event listeners are prefixed with `on` or `nativeOn` onClick={this.clickHandler} nativeOnClick={this.nativeClickHandler} // other special top-level properties class={{ foo: true, bar: false }} style={{ color: 'red', fontSize: '14px' }} key="key" ref="ref" // assign the `ref` is used on elements/components with v-for refInFor slot="slot"> </p> ) }
对应的Vue2.0 JSX语法
const data = { class: ['b', 'c'] } const vnode = <p class="a" {...data}/>
JSX展开运算符
支持JSX展开,插件会智能的合并数据属性,如:
{ class: ['a', 'b', 'c'] }
合并后的数据为:
const directives = [ { name: 'my-dir', value: 123, modifiers: { abc: true } } ] return <p {...{ directives }}/>
Vue 指令
JSX对大多数的Vue内建指令都不支持,唯一的例外是v-show
,该指令可以使用v-show={value}
的语法。大多数指令都可以用编程方式实现,比如v-if
就是一个三元表达式,v-for
就是一个array.map()
等。
如果是自定义指令,可以使用v-name={value}
语法,但是改语法不支持指令的参数arguments
和修饰器modifier
。有以下两个解决方法:
将所有内容以一个对象传入,如:v-name={{ value, modifier: true }}
먼저 Vue2.0의 vnode 형식이 React의 두 번째 매개변수와 다릅니다. > 함수는 중첩된 개체를 허용하는 데이터 개체이며, 각 중첩된 개체는 해당 모듈에 의해 처리됩니다.
해당 Vue2.0 JSX 구문
rrreee은 JSX 확장을 지원하며 플러그인은 지능적으로 데이터 속성 병합 , 예:
rrreee
Vue 명령 🎜🎜🎜🎜JSX는 대부분의 Vue 내장 명령을 지원하지 않습니다. 유일한 예외는
입니다. v -show
, 이 명령은 v-show={value}
구문을 사용할 수 있습니다. 대부분의 명령어는 프로그래밍 방식으로 구현될 수 있습니다. 예를 들어 v-if
는 삼항 표현식이고 v-for
는 array.map() code>입니다. 등. 🎜🎜🎜사용자 정의 명령어인 경우 <code>v-name={value}
구문을 사용할 수 있지만 수정된 구문은 명령어의 매개변수 arguments
및 수정자를 지원하지 않습니다. 수정자
. 두 가지 해결 방법이 있습니다. 🎜🎜 모든 콘텐츠를 다음과 같은 객체로 전달합니다. v-name={{ value, modifier: true }}
🎜🎜🎜 다음과 같은 기본 vnode 명령 데이터 형식을 사용합니다. : 🎜🎜🎜🎜rrreee🎜🎜🎜위 내용은 모두의 학습에 도움이 되기를 바랍니다. 더 많은 관련 내용은 PHP 중국어 홈페이지를 주목해주세요! 🎜🎜관련 권장 사항: 🎜🎜🎜Vue 기반 지연 로딩 플러그인인 vue-view-lazy 소개🎜🎜🎜🎜🎜vue 구성 요소 이름 소개🎜🎜🎜🎜🎜jquery를 사용하여 이미지 가로 스크롤 효과 달성 🎜🎜🎜🎜🎜🎜🎜 🎜🎜위 내용은 Vue 구성 요소의 jsx 구문 사용 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!