36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
// Learn TypeScript:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/typescript.html
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/typescript.html
|
|
// Learn Attribute:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/reference/attributes.html
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/reference/attributes.html
|
|
// Learn life-cycle callbacks:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/life-cycle-callbacks.html
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/life-cycle-callbacks.html
|
|
var SDKManage = require("SDKManage");
|
|
const { ccclass, property } = cc._decorator;
|
|
|
|
@ccclass
|
|
export default class httpTest extends cc.Component {
|
|
// LIFE-CYCLE CALLBACKS:
|
|
|
|
// onLoad () {}
|
|
|
|
start() {
|
|
this.getComponent("tableView").initTableView(2, {
|
|
array: null,
|
|
target: this,
|
|
});
|
|
}
|
|
httpCallBack(_code, _msg, _data) {
|
|
if (!_code) {
|
|
console.log("HttpBack======", _data);
|
|
}
|
|
}
|
|
testCallBack(_data) {
|
|
console.log("Http====", _data);
|
|
}
|
|
// update (dt) {}
|
|
//
|
|
}
|