大约有 230 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
...差别。 所有代码都能直接访问,不需要也没办法使用`require("./xxx")`或者`import * as xxx from "./xxx"`,可以通过使用别名访问:`import a = x.y;` 2.x 有模块(module)的概念,但是不能使用命名空间(namespace), 虽然都能编译通过,但是name...
来源: Laya_社区 发布时间: 20190422
...05-11 11:23 发布后的微信小游戏工程里改game.js: let matter = require("matter.js"); window.Matter = matter; require("weapp-adapter.js"); require("code.js"); 吉日-jerry • 2018-05-11 11:28 这种方式在个别手机上有问题,等待官方回复吧
来源: Laya_社区 发布时间: 20180510
...onymous) @ code.js:7056 GameEx @ code.js:56322 (anonymous) @ code.js:56681 require @ WAGame.js:3 (anonymous) @ WAGame.js:3 (anonymous) @ game.js? [sm]:2 require @ WAGame.js:3 (anonymous) @ gamePage.html:148 VM163:1 gameThirdScriptError window.focus is not a function TypeError: window.focus is not a ...
来源: Laya_社区 发布时间: 20180426
... window is not defined at https://servicewechat.qq.com/game.js:63771:12 at require (<anonymous>:3:7977) at https://servicewechat.qq.com/game.js:63777:10 请问如何解决?官方的DEMO都有问题吗? 2019-01-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...
来源: Laya_社区 发布时间: 20190104
...误 ld: warning: ignoring file ../LayaRuntime-iOS/libs/libconch.a, missing required architecture i386 in file ../LayaRuntime-iOS/libs/libconch.a (2 slices) ld: warning: ignoring file ../LayaRuntime-iOS/libs/libJavaScriptCore.a, missing required architecture i386 in file ../LayaRuntime-iOS/libs/libJa...
来源: Laya_社区 发布时间: 20161222
协议打包byte出错 // message request_create{ // required string name = 1; //角色名 // required bytes career = 2; //角色职业 // required bytes sex = 3; //角色性别 // } if(Msg== null){ ...
来源: Laya_社区 发布时间: 20180314
...是链接不上,然而自己写的能链接。 server.js var express = require('express'); var app = express(); var server = require('http').createServer(app); var io = require('socket.io').listen(server); server.listen(8888); console.log("服务器启动"); io.on('connection', function (ws) { con...
来源: Laya_社区 发布时间: 20181107
...样增量更新方式比整个替换文件夹要来的舒服const gulp = require('gulp') const hash = require('gulp-hash') const through = require('through2') const clean = require('gulp-clean') let staticVersion = {} gulp.task('clean', function () { return gulp.src('./src/assets/*', {read: false})....
来源: Laya_社区 发布时间: 20180412
...那边将matter.js文件导入 ,在game.js里面加入 window.Matter = require("./matter.js"); 这样程序里面可以获取到引用并正常使用,但有些手机不支持这样写会卡死在微信初始化小游戏这地方(测试过这样这地方这样导入JS就百分百卡死 如果...
来源: Laya_社区 发布时间: 20180508
...ps://github.com/sindresorhu ... ex.js 'use strict'; const modifyFilename = require('modify-filename'); module.exports = (pth, hash) => { if (!(pth && hash)) { throw new Error('`path` and `hash` required'); } return modifyFilename(pth, (filename, ext) => `${filename}-${hash}${ext}`); };...
来源: Laya_社区 发布时间: 20200831