返回介绍

setNativeProps

发布于 2019-12-27 00:37:38 字数 1880 浏览 904 评论 0 收藏 0

在 Rax 中,可以通过更新组件的 state 或者 props 来改变组件的状态。但是,这样会导致组件的 render 方法被频繁调用,从而影响应用的性能表现,基于此,官方提供了 setNativeProps 模块,通过 setNativeProps 可以直接更改原生组件的属性来更新组件状态。

安装

$ npm install rax-set-native-props --save

方法

setNativeProps(node, props?)

参数

属性类型默认值描述支持
nodeDOMNode-DOM 节点
propsObject{}需要更新的 props

注:props 仅可以传入 style、事件与属性,当传入 children、null 或 undefined 时会被忽略

示例

import { createElement, Component, render, useRef } from 'rax';
import View from 'rax-view';
import Text from 'rax-text';
import setNativeProps from 'rax-set-native-props';

function App() {
  const textRef = useRef(null);

  function updateStyle() {
    setNativeProps(textRef.current, {
      style: {
        color: '#dddddd'
      }
    });
  }
  
  return <View>
	<Text ref={textRef} >setNativeProps</Text>
	  <View onClick={updateStyle}>
		  <Text >修改文字样式</Text>
	  </View>
  </View>
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文