Ionic 我应该如何处理离子上的这个错误

beq87vna  于 12个月前  发布在  Ionic
关注(0)|答案(1)|浏览(148)
index.js:493 [webpack-dev-server] ERROR  
src/app/home/home.page.html:12:27 - error TS2341: Property 'res' is private and only accessible within class 'HomePage'.

12     <span class="date">{{ res.current.dt}}</span>
                             ~~~

  src/app/home/home.page.ts:6:16
    6   templateUrl: 'home.page.html',
                     ~~~~~~~~~~~~~~~~
    Error occurs in the template of component HomePage.

字符串
我试图从API中获取数据以显示在我的html上,但它给了我这个错误,当我将罗马设置为“私有”时,它根本无法获取数据。

brc7rcf0

brc7rcf01#

看起来你试图访问模板中的私有成员,这是不正确的,因为对于给定的组件,其模板访问的所有成员(方法,属性)都必须是公共的。
此链接可能对您有帮助。Property 'X' is private and only accessible within class 'xyzComponent'

相关问题