如果使用render函数来写比较复杂的vue组件,对于可读性和可维护性都很不友好,而使用jsx就会让我们回到更接近于模板的语法。babel转译器会将jsx转译为render函数渲染。
配置
需要用到babel插件
npm install\ babel-plugin-syntax-jsx\ babel-plugin-transform-vue-jsx\ babel-helper-vue-jsx-merge-props\ babel-preset-env\ --save-dev
.babelrc配置
在plugins中添加transform-vue-jsx
{ "presets": ["env"], "plugins": ["transform-vue-jsx"] }
基础示例
转义前
<div id="foo">{this.text}</div>
转译后
h('div', { attrs: { id: 'foo' } }, [this.text])
Note:h函数为vue实例的$createElement方法,必须存在于jsx的作用域中,在渲染函数中必须以第一个参数传入,如:
render (h) { // <-- h 函数必须在作用域内 return <div id="foo">bar</div> }
自动注入h函数
从3.4.0开始,在用ES2015语法声明的方法和getter访问器中(使用function关键字或箭头函数除外),babel会自动注入h(const h = this.$createElement)函数,所以可以省略(h)参数。
Vue.component('jsx-example', { render () { // h 会自动注入 return <div id="foo">bar</div> }, myMethod: function () { // h 不会注入 return <div id="foo">bar</div> }, someOtherMethod: () => { // h 不会注入 return <div id="foo">bar</div> } }) @Component class App extends Vue { get computed () { // h 会自动注入 return <div id="foo">bar</div> } }
Vue JSX 和 React JSX对比
首先, Vue2.0 的vnode 格式与react不同,createElement函数的第二个参数是一个数据对象,接受一个嵌套的对象,每一个嵌套对象都会有对应的模块处理。
Vue2.0 render语法
render (h) { return h('div', { // 组件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' }) }
对应的Vue2.0 JSX语法
render (h) { return ( <div // 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"> </div> ) }
JSX展开运算符
支持JSX展开,插件会智能的合并数据属性,如:
const data = { class: ['b', 'c'] } const vnode = <div class="a" {...data}/>
合并后的数据为:
{ class: ['a', 'b', 'c'] }
Vue 指令
JSX对大多数的Vue内建指令都不支持,唯一的例外是v-show,该指令可以使用v-show={value}的语法。大多数指令都可以用编程方式实现,比如v-if就是一个三元表达式,v-for就是一个array.map()等。
如果是自定义指令,可以使用v-name={value}语法,但是改语法不支持指令的参数arguments和修饰器modifier。有以下两个解决方法:
将所有内容以一个对象传入,如:v-name={{ value, modifier: true }}
使用原生的vnode指令数据格式,如:
const directives = [ { name: 'my-dir', value: 123, modifiers: { abc: true } } ] return <div {...{ directives }}/>
原文地址(https://github.com/vuejs/babel-plugin-transform-vue-jsx#usage)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。
本文向大家介绍vue jsx 使用指南及vue.js 使用jsx语法的方法,包括了vue jsx 使用指南及vue.js 使用jsx语法的方法的使用技巧和注意事项,需要的朋友参考一下 vue jsx 语法与 react jsx 还是有些不一样,在这里记录下。 好了,下面看下vue.js 使用jsx语法的方法 1、创建一个测试的组件 2、把编辑器js语言的版本设置成jsx,这样编辑器 可以正
本文向大家介绍详解利用jsx写vue组件的方法示例,包括了详解利用jsx写vue组件的方法示例的使用技巧和注意事项,需要的朋友参考一下 前言 本文主要给大家介绍的是关于利用jsx写vue组件,下面话不多说,来一起看看详细的介绍吧。 我们平常写vue的组件时,一般都是用的是模版,这种方式看起来比较简洁,而且vue作者也推荐使用这个方式,但是这种方式也有一些它的弊端,例如模版调试麻烦,或者在一些场景下
本文向大家介绍VUE脚手架具体使用方法,包括了VUE脚手架具体使用方法的使用技巧和注意事项,需要的朋友参考一下 什么是vue脚手架? 他是一个快速构建 vue 项目的工具,通过他,我们可以将 vue 所需要的文件安装完成。 vue-cli这个构建工具大大降低了webpack的使用难度,支持热更新,有webpack-dev-server的支持, 相当于启动了一个请求服务器,给你搭建了一个测试环境,只
问题内容: 我有一个网站,服务器在其中生成一些javascript,并将其通过ajax发送到客户端。问题是,我想在页面上使用React,但不知道要调用哪个函数。现在,JavaScript在jQuery中,我使用eval()在客户端执行javascript。什么是适用于JSX的eval()的React等效项。 问题答案: 如果您希望它与JSX一起使用,则可以在执行代码之前使用Babel之类的代码来转
本文向大家介绍详解Vue如何支持JSX语法,包括了详解Vue如何支持JSX语法的使用技巧和注意事项,需要的朋友参考一下 通常开发vue我们使用的是模板语法,其实还有和react相同的语法,那就是render函数,同样支持jsx语法。 Vue 的模板实际是编译成了 render 函数。 1.传统的createElement方法 渲染成下面这样 2.使用jsx语法 这就是会用到一个Babel plug
JSX 是一个看起来很像 XML 的 JavaScript 语法扩展。 它只是一种语法糖。 它是类似 HTML 标签的表达式: <View style={styles.text}> <Text style={styles.title}> MAKE IT EASY TO DO BUSINESS ANYWHERE </Text> <Text style={styl