gpt4 book ai didi

javascript - 解析Cloudcode : putting functions into different files

转载 作者:行者123 更新时间:2023-11-28 00:32:07 26 4
gpt4 key购买 nike

您好,我对 Parse Cloudcode 和 JS 非常陌生。在 Cloudcode 中,我们需要将函数放入 main.js 中才能使用它们。无论如何,我是否可以将它们组织到不同的文件中并在 main.js 中导入,以便我可以保持 main.js 干净和简短?如果可以,该怎么做?

还有关于调试的问题:Cloud code 中是否有类似 NSLog(在控制台上打印出任何内容)或断点之类的内容,以便我可以轻松地在 cloudcode 上调试我的代码?

谢谢

最佳答案

回答您的第一个问题:尽管文件大小除了可读性之外无关紧要,但请尝试在同一“云”文件夹中创建免费的 js 文件。然后使用 main.js 文件顶部的 require() 来包含这些函数

require('cloud/userFunction.js');

调试时可以使用这三种方法

console.log("The user name is " + user.name + " with an age of " + user.age);

//These two post directly to the error log
error.log("Error here " + error.message);
console.warn("Issue in method set name");

您可以通过访问应用程序,选择顶部的“核心”,然后选择左侧菜单底部的“日志”,在 Parse 用户仪表板中找到云代码日志。

关于javascript - 解析Cloudcode : putting functions into different files,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28884876/

26 4 0
文章推荐: html - 有没有办法将一些
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com