我正在开发angular2 applciation。我需要自动调整textarea。 我正在尝试重用https://github.com/stevepapa/angular2-autosize
中的angular2-autosize关注自述文件,但我收到以下错误
未捕获错误:模块构建失败:错误:ENOENT:没有此类文件或目录,打开&#39; C:\ Users \ Vipin \ SampleApp \ node_modules \ angular2-autosize \ angular2-autosize.js&#39;。< / p>
请建议如何克服这个问题。
答案 0 :(得分:13)
更新(15.04.2018) 管理打包它,现在它可用作
npm install ngx-autosize
https://github.com/chrum/ngx-autosize
旧答案:
我今天遇到了同样的问题并解决了问题! 请检查我的叉子: https://github.com/chrum/angular2-autosize
在PR合并之前,尝试:
npm install https://github.com/chrum/angular2-autosize.git --save
然后在你的代码中,因为它略有不同,你只需导入模块而不是指令......
所以 而不是:
import {Autosize} from 'angular2-autosize';
@NgModule({
...
declarations: [
Autosize
]
...
})
你应该:
import {AutosizeModule} from 'angular2-autosize';
@NgModule({
...
imports: [
AutosizeModule
]
...
})
答案 1 :(得分:8)
你可以在不使用包的情况下这样做。 它的简单
在下面的控制器中
autogrow(){
let textArea = document.getElementById("textarea")
textArea.style.overflow = 'hidden';
textArea.style.height = '0px';
textArea.style.height = textArea.scrollHeight + 'px';
}
和html如下
<textarea id="textarea" (keyup)="autogrow()" ></textarea>
答案 2 :(得分:2)
对于tanveer答案的稍作修改的答案是使用@ViewChild
@ViewChild('textArea', { read: ElementRef }) textArea: ElementRef;
public autoGrow() {
const textArea = this.textArea.nativeElement;
textArea.style.overflow = 'hidden';
textArea.style.height = '0px';
textArea.style.height = textArea.scrollHeight + 'px';
}
在HTML中应该是
<textarea (keyup)="autoGrow()" #textArea></textare>
答案 3 :(得分:2)
为什么需要此插件,它很简单:
<textarea (keyup)="autoGrowTextZone($event)"></textarea>
和
autoGrowTextZone(e) {
e.target.style.height = "0px";
e.target.style.height = (e.target.scrollHeight + 25)+"px";
}
答案 4 :(得分:2)
请求的行为已经在angular material
中实现,如此处记录的:Angular Material Input Autosize。如果您仍然使用angular material
,则此功能特别有用。
仅使用cdkTextareaAutosize
作为示例:
<textarea cdkTextareaAutosize></textarea>
答案 5 :(得分:2)
您可以如下使用:
<textarea [rows]="text.split('\n').length || 2">{{text}}</textarea>
在 ts 中创建一个函数:
getHeight(content) {
const v1 = Math.floor(content.length / 50);
const v2 = content.split('\n').length;
return Math.max(v1,v2)
}
HTML:
<textarea [rows]="getHeight(text) || 2">{{text}}</textarea>
答案 6 :(得分:1)
我知道这个话题已经很老了,但是我只是改变了tanveer的答案以输入最大高度。
import { Directive, ElementRef, OnInit, HostListener, Input } from '@angular/core';
@Directive({
selector: '[appAutoResize]',
})
export class AutoResizeDirective implements OnInit {
constructor(public element: ElementRef) {
}
@Input() maximumHeight: number; // based on pixel
@HostListener('input', ['$event.target'])
ngOnInit(): void {
this.adjust();
}
adjust(): void {
const ta = this.element.nativeElement;
const maxHeghit = this.maximumHeight;
ta.style.overflow = 'hidden';
ta.style.height = 'auto';
if (ta.scrollHeight <= maxHeghit) { // while current height is less than maximumHeight
ta.style.height = ta.scrollHeight + 'px';
} else { // greater than maximumHeight
ta.style.height = maxHeghit + 'px';
ta.style.overflow = 'auto';
}
}
}
因此,您将可以控制样式行为。
希望对您有所帮助。
答案 7 :(得分:1)
从angular-cli创建指令并添加以下代码
import { Directive, ElementRef, HostListener, Input } from '@angular/core';
@Directive({
selector: '[appAutoGrow]'
})
export class AutoGrowDirective {
constructor(public element: ElementRef) {
}
@Input() maximumHeight: number; // based on pixel
@Input() minHeight: number; // based on pixel
@HostListener('input', ['$event.target'])
@HostListener('cut', ['$event.target'])
@HostListener('paste', ['$event.target'])
@HostListener('change', ['$event.target'])
ngOnInit(): void {
this.adjustCustom();
}
adjustCustom(): void {
const element = this.element.nativeElement;
element.style.height = this.minHeight + 'px';
element.style.height = (element.scrollHeight) + 'px';
if (element.scrollHeight <= this.maximumHeight) {
element.style.overflowY = 'hidden'
delete element.style.maxHeight
} else {
element.style.overflowY = 'scroll'
element.style.maxHeight = this.maximumHeight + 'px';
}
}
}
并按照以下说明使用指令
<textarea autofocus [maximumHeight]="200" [minHeight]="43" appAutoGrow></textarea>
答案 8 :(得分:0)
在IE以及其他浏览器中对我有效的解决方案
// Usage example: <textarea autoresize></textarea>
import { ElementRef, HostListener, Directive} from '@angular/core';
@Directive({
selector: 'textarea[autosize]'
})
export class Autosize {
@HostListener('input',['$event.target'])
onInput(textArea: HTMLTextAreaElement): void {
this.adjust();
}
constructor(public element: ElementRef){
}
ngAfterContentChecked(): void{
this.adjust();
}
adjust(): void{
this.element.nativeElement.style.overflow = 'hidden';
this.element.nativeElement.style.height = 'auto';
this.element.nativeElement.style.height = this.element.nativeElement.scrollHeight + "px";
}
}
将以下代码添加到APp.Module.ts
@NgModule({
declarations: [
Autosize
]
})
在HTML上使用标记
<textarea autosize></textarea>