如何在 React Native 中按字母顺序加载联系人?
How to load contacts alphabetically in react native?
我正在创建一个反应本机应用程序来加载 phone 预订联系人到我的应用程序 using this library. 我在我的应用程序中正确加载联系人。但联系人不按字母顺序排列。现在我想按字母顺序加载联系人。我该怎么做?
This is the error after adding sorting part.
您可以修改library code。在第 77 行的 Contacts.js 文件中,您会找到 getListOfContacts = () => {
。完成更改并填写此功能后,此功能应该在此库中,请为此提高 PR。
Const tmpArray = _.sortBy(arrFinal, 'fullname')than
this.setState({ contactList: tmpArray, isLoading: false })`
我正在创建一个反应本机应用程序来加载 phone 预订联系人到我的应用程序 using this library. 我在我的应用程序中正确加载联系人。但联系人不按字母顺序排列。现在我想按字母顺序加载联系人。我该怎么做?
This is the error after adding sorting part.
您可以修改library code。在第 77 行的 Contacts.js 文件中,您会找到 getListOfContacts = () => {
。完成更改并填写此功能后,此功能应该在此库中,请为此提高 PR。
Const tmpArray = _.sortBy(arrFinal, 'fullname')than
this.setState({ contactList: tmpArray, isLoading: false })`