介绍

此js函数方法,为uView框架提供的一部分功能,它的实现,需要通过js调用,而不是组件的形式。 工具库中的所有方法,均挂载在$u对象下,调用方法如下:

  • 如果是在js中,需要通过this.$u.xxx形式调用,如调用去除空格的trim方法:
  1. console.log(this.$u.trim(' abc ')); // 去除两端空格
  • 如果是在元素中,无需前缀this,如:
  1. <template>
  2. <view>
  3. 去除所有空格:{{$u.trim(str, 'all')}}
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. str: 'a b c '
  11. }
  12. },
  13. }
  14. </script>