我在项目中使用谷歌虚拟键盘。要初始化键盘,我运行以下脚本:
GERMAN
但我想用单个String替换var lang = SWEDISH
。但这怎么可能呢?我已经定义了变量function onLoad() {
console.log(lang);
var kbd = new google.elements.keyboard.Keyboard(
[google.elements.keyboard.LayoutCode.lang],
['input1']);
}
并尝试了以下内容:
uncaught undefined is not a supported layout.
但是这会导致以下错误消息:{{1}}
任何想法,如何解决这个问题?
答案 0 :(得分:1)
你试过了吗?
class ConfigSerializer(serializers.ModelSerializer):
class Meta:
model = Content
fields = ('title', 'custom_fields_json')