是否可以将从数据库中检索到的数据保存到字符串中?
对于我的情况,我想将TAG_NAME(数据库中的数据)保存为字符串。我能以与Textview相同的方式完成吗?
export default Ember.Component.extend({
model() {
return this.store.findAll('category');
},
actions: {
categorySelected: function(){
debugger;
var e = document.getElementById("categories");
var catId = e.options[e.selectedIndex].value;
//I have verified that catId contains the appropriate ID at this point.
//Where the error happens:
this.transitionTo('/category/' + catId);
}
}
});
答案 0 :(得分:1)
绝对可能,因为product.getString(TAG_NAME)
总是返回一个空字符串或带有值的字符串,你可以将它存储在一个字符串中。
甚至可以使用.toString()
扩展名
答案 1 :(得分:0)
尝试使用toString()
String name = (product.getString(TAG_NAME).toString());