el-select 远程搜索无限请求?

使用el-select远程搜索,刚进入页面时不停地调搜索接口,请问是参数设置有什么问题吗?我是根据文档来的
el-select 远程搜索无限请求?
这是搜索的方法
el-select 远程搜索无限请求?

进入页面之后
el-select 远程搜索无限请求?

请各位指点!!


回答:

remoteMethod方法里面一般加个判断比较好,关键字为空不去处理,也就不请求

remoteMethod(keyword) {

if(!keyword.trim()) return

this.getAreaDetail(keyword)

}

再就是remote-method绑定一个方法名即可不需要调用 :remote-method="remoteMethod"


回答:

绑定的时候不需要执行也就是说,直接传入函数即可:

<el-select

...

- :remote-method="remoteMethod(scope.row.nodeName)"

+ :remote-method="remoteMethod"


回答:

remote-method绑定的是一个函数句柄,不是执行它也就是要这么写:remote-method="remoteMethod"

以上是 el-select 远程搜索无限请求? 的全部内容, 来源链接: utcz.com/p/934220.html

回到顶部