Weex 知識點

iOS_阿斯頓發表於2018-03-14

頁面級別的資料傳輸-Page level data transfer(釘釘)

  • weex to weex 通過URL傳引數(攜帶的資料量有限),通過weex storage module
  • weex to h5,h5 to weex 通過URL傳引數
  • native to weex 通過alloc weex 容器中的option或者data傳入,前者可以在weex.config中獲取,後者可以在vm上下文中獲取
  • weex to native 定義一個跳轉native的module,使用native的屬性或者init時傳

如何在 pages 之間傳遞資料(官方建議)

如果你有兩個頁面,A 頁面和 B 頁面
  1. A -> B,使用 getConfig api or storage module 傳遞資料;
  2. B -> A,使用 storage module 傳遞資料。

Weex 頁面跳轉

navigator https://weex.apache.org/cn/references/modules/navigator.html
navigationbar的相關設定要在sdk中看,文件中沒有,沒有,沒有啊

長列表的複用方案