我想为我的问答游戏使用本地数据库文件,例如问题数据库。我在 cocos creator 官方网站或论坛上找不到任何教程。在c++中已经解决了
使用cocos2d-x使用数据库(如sqlite)
的问题
但是我想用下面的javascript来使用它,这是Cocos creator中的默认脚本
cc.Class({
extends: cc.Component,
properties: {
// foo: {
// default: null, // The default value will be used only when the component attaching
// to a node for the first time
// url: cc.Texture2D, // optional, default is typeof default
// serializable: true, // optional, default is true
// visible: true, // optional, default is true
// displayName: 'Foo', // optional
// readonly: false, // optional, default is false
// },
// ...
},
// use this for initialization
onLoad: function () {
},
onbuttnclick: function(){
//var test = new cc.Scene('test');
//cc.director.pushScene(test);
cc.director.loadScene('helloworld');
//cc.director.popScene();
},
// called every frame, uncomment this function to activate update callback
// update: function (dt) {
// },
});
我需要 javascript 的解决方案,因为我的 c++ 很差