0
我需要更改來自http://example.com/new.json
的來自json的sencha touch 2中的工具欄標題。也許我應該使用AJAX調用來獲取json然後解析它......但是如何將值插入到title:''
有沒有可能?sencha touch 2 json的工具欄標題
Main.js
Ext.define('Sencha.view.Main', {
extend: 'Ext.Container',
xtype: 'main',
requires: [
'Ext.Toolbar',
'Ext.Button',
'Ext.Img',
'Ext.Label',
'Ext.form.FieldSet'
],
config: {
layout: 'hbox',
items: [
{
xtype: 'toolbar',
docked: 'top',
itemId: 'navBar',
title: 'app', // need to change 'app' from json dynamically
items: [ ..... ]
}
]
}
});
JSON例如
{
data: {
add: {
application_config: {
datasources: [
{
data: {
application_title: "test2" // 'test2' should be passed as value to title
}
}
]
}
}
}
}
謝謝你。但是如果我在sencha架構中有json reader並且以這種方式解析json會怎麼樣:'rootProperty:'data.add.application_config.datasources [0] .data'' 和模板'
完全相同的方式。只需在商店的加載事件處理程序中執行此操作:http://docs.sencha.com/touch/2.3.1/#!/api/Ext.data.Store-event-load – arthurakay