AceEditor的坑

博客围绕AceEditor展开,提到安装和使用中遇到的问题。当宽度设置过长,页面会出现竖线,去掉font可消除竖线,但会使光标获取焦点位置错乱。还介绍了正确设置,即覆盖ace_editor的宽度。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

安装

npm install react-ace react-ace-editor ace-builds 

问题

用AceEditor,如果宽度设置过长,页面显示会有一条竖线,当时发现去掉font(font: inherit; ),就可以去掉这条线,但是会导致光标获取焦点位置错乱

正确设置: 覆盖ace_editor的宽度

.aceEdit {
	:global( .ace editor) f
		width: auto;
	}}

用法

import AceEditor from 'react-ace'
<Form.Item name='json' label="json示例" rules={[{ required: true, message: '请输入json示例' }]}>
          <AceEditor
            mode="javascript"
            theme="github"
            //   onChange={onChange}
            // value={value}
            name="UNIQUE_ID_OF_DIV"
            editorProps={{ $blockScrolling: true }}
            height={'200px'}
            width='100%'
            showGutter={true}
            highlightActiveLine={true}
            enableBasicAutocompletion={true}
            enableLiveAutocompletion={true}
            setOptions={{
              firstLineNumber: 1,
              highlightGutterLine: true,
              displayIndentGuides: false,
              animatedScroll: true,
              autoScrollEditorIntoView: true,
              fontSize: 12,
            }}
          />
        </Form.Item>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值