0
我有2個模型 - 消息和用戶 - 每條消息都有一個用戶。我使用嵌套的用戶數據加載消息的json文件 - 我的模型已經定義了他們的關係。如何在Sencha Touch 2中訪問多對一的關聯tpl
[{"message_id":"1","user":{"user_id":"2","name":"Bob"},"text":"This is a sample message that is here as a placeholder until we have real comments"}...
在我的模板中,我想訪問用戶數據 - 但{user.name}不會產生任何內容。
任何人都有一個例子嗎?看來我必須自己解析,但不知道從哪裏開始