同一个主体也不行?
游戏被误判代码抄袭街头少年和水上大冲关都是同一个研发开发,绝对没有代码抄袭,代码提交者都是:Mian Goo。同一个开发者,代码相似很正常啊,请明察!我在申诉中有很详细的提交证明材料,希望能得到处理,不然作为研发,实在冤屈! [图片]
2023-04-04楼主问题解决了吗
自己开发的不同游戏提示代码抄袭问题急需寻求帮助: 因为我们游戏开发的时候有做了一部分公共代码库(像加载页、排行榜、服务器请求资源等这些),避免同样的功能多次开发浪费人力。之前用个人主体上过一两款游戏,现在用公司主体提交新游戏审核的时候,会提示涉嫌代码抄袭,直接扣5分主体信用分,上架也上不了,想请问下这个要怎样来处理。
2023-04-04我也遇到这个问题,请教下具体怎么处理
TypeScript开发小程序逻辑部分,自定义命名空间,在页面ts中调用无法找到命名空间,怎么解决?使用TypeScript开发小程序逻辑部分,使用了自定义命名空间,但是在app.ts中初始化时,总是找不到自定义的命名空间。微信小程序有没有使用TypeSript开发开发的面向对象开发demo?可以参考下目录结构和调用方式 itech.d.ts /// <reference path="./device/device.d.ts" /> /// <reference path="./device/device.api.d.ts" /> declare namespace Itech { interface DeviceManager { bindNewDevice(bindInfo: BindDeviceInfo): RemoteDevice | null; saveDeviceCacche(device: RemoteDevice): boolean; unbind(device: RemoteDevice): void; } interface getDeviceManager { () : DeviceManager; } } DeviceManager.ts文件 namespace Itech { export class DeviceManager { bindDevices: Map<string, RemoteDevice>; static INSTANCE: DeviceManager; static getInstance() : DeviceManager { if (DeviceManager.INSTANCE === undefined) { DeviceManager.INSTANCE = new DeviceManager(); } return DeviceManager.INSTANCE; } constructor() { this.bindDevices = new Map<string, RemoteDevice>(); } .... } 我要在app.ts中创建一个DeviceManager对象,调用其中的接口,要怎么初始化? 使用如下调用 App<IAppOption>({ globalData: {}, onLaunch() { let deviceManager = Itech.DeviceManager.getInstance(); console.log("-----deviceManager: " + deviceManager); ... } 出错如下: thirdScriptError Itech is not defined;at App lifeCycleMethod onLaunch function ReferenceError: Itech is not defined at he.onLaunch (http://127.0.0.1:51160/appservice/app.js:8:29) at he.<anonymous> (http://127.0.0.1:51160/appservice/__dev__/WAService.js:1:1045736) at http://127.0.0.1:51160/appservice/__dev__/WAService.js:1:1046174 at new he (http://127.0.0.1:51160/appservice/__dev__/WAService.js:1:1046250) at Function.<anonymous> (http://127.0.0.1:51160/appservice/__dev__/WAService.js:1:1046581) at http://127.0.0.1:51160/appservice/__dev__/WAService.js:1:1034791 at http://127.0.0.1:51160/appservice/app.js:3:1 at require (http://127.0.0.1:51160/appservice/__dev__/WAService.js:1:1077084) at <anonymous>:1:1 at HTMLScriptElement.scriptLoaded (http://127.0.0.1:51160/appservice/appservice?t=1588058560389:3659:21)
2021-08-19