Code Monkey home page Code Monkey logo

Comments (3)

imyelo avatar imyelo commented on May 18, 2024

通过 Tina.Page.define({}) 构造的实例可以理解为是 Page({}) 实例的一层代理。

而小程序全局方法 getCurrentPages() 返回的是原生 Page({}) 构造的实例列表 —— 如果在这些实例上直接执行 setData() 则绕过了 Tina.Page 的代理,虽然最终页面上的数据依旧会发生变化,但新的数据并不会同步到 Tina 的代理实例上。

在不得不使用 getCurrentPages() 的情况下,可以通过挂载在原生实例上的 __tina_instance__ 访问 Tina 的代理实例,比如上面的例子:

  let pages = getCurrentPages()
  let prevPage = pages[pages.length - 2]
-  prevPage.setData({
+  prevPage.__tina_instance__.setData({
    test: 'some test',
  })

from tina.

imyelo avatar imyelo commented on May 18, 2024

通常如果需要跨页面修改 / 访问数据,推荐引入全局状态管理器(如 Redux),而避免使用 getCurrentPages()

from tina.

imyelo avatar imyelo commented on May 18, 2024

v1.5.0 released.

现在你也可以通过 import { getCurrentPages } from '@tinajs/tina 代替全局的 getCurrentPages API,访问由 Tina Page 构造的当前页面栈。

相关文档:

from tina.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.