Update httpTest.ts
This commit is contained in:
parent
123b0c62b0
commit
c0cd8e9b9e
@ -7,34 +7,28 @@
|
|||||||
// Learn life-cycle callbacks:
|
// Learn life-cycle callbacks:
|
||||||
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/life-cycle-callbacks.html
|
// - [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
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/life-cycle-callbacks.html
|
||||||
var SDKManage = require("SDKManage")
|
var SDKManage = require("SDKManage");
|
||||||
const {ccclass, property} = cc._decorator;
|
const { ccclass, property } = cc._decorator;
|
||||||
|
|
||||||
@ccclass
|
@ccclass
|
||||||
export default class httpTest extends cc.Component {
|
export default class httpTest extends cc.Component {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// LIFE-CYCLE CALLBACKS:
|
// LIFE-CYCLE CALLBACKS:
|
||||||
|
|
||||||
// onLoad () {}
|
// onLoad () {}
|
||||||
|
|
||||||
start () {
|
start() {
|
||||||
this.getComponent("tableView").initTableView(2, {
|
this.getComponent("tableView").initTableView(2, {
|
||||||
array: null,
|
array: null,
|
||||||
target: this
|
target: this,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
httpCallBack(_code,_msg,_data)
|
httpCallBack(_code, _msg, _data) {
|
||||||
{
|
if (!_code) {
|
||||||
if(!_code)
|
console.log("HttpBack======", _data);
|
||||||
{
|
|
||||||
console.log("HttpBack======",_data);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
testCallBack(_data)
|
testCallBack(_data) {
|
||||||
{
|
console.log("Http====", _data);
|
||||||
console.log("测试Http====",_data);
|
|
||||||
}
|
}
|
||||||
// update (dt) {}
|
// update (dt) {}
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user