解析CLI不会上传非js文件

时间:2015-05-13 08:53:45

标签: parse-platform

我正在尝试使用我的Cloud Code发送iOS推送通知(我无法使用Parse的Push API,因为我的应用程序是使用离子构建的,而且他们的所有文档都希望使用原生代码。)

我使用nodejs在本地作为独立脚本工作,但是当我上传它来解析时,我得到:

Uploading source files
Note that the following files will not be uploaded:
parse_cloud_code/cloud/cloud/cert.pem
parse_cloud_code/cloud/cloud/key.pem
Uploading recent changes to scripts...
The following files will be uploaded:
parse_cloud_code/cloud/cloud/cloud.js
parse_cloud_code/cloud/cloud/cloud_test.js
parse_cloud_code/cloud/cloud/credentials.js
parse_cloud_code/cloud/cloud/fs.js
parse_cloud_code/cloud/cloud/push-notification.js
parse_cloud_code/cloud/cloud/push-notifications_test.js
parse_cloud_code/cloud/cloud/tls.js
Finished uploading files
Error: Failed to load cloud/cert.pem with: Could not find file cloud/cert.pem
    at Object.exports.readFile (cloud/fs.js:24:17)
    at readFile (cloud/push-notification.js:45:8)
    at body (cloud/push-notification.js:56:5)
    at cloud/push-notification.js:147:3
    at cloud/push-notification.js:156:3
    at cloud/cloud.js:5073:5
    at cloud/cloud.js:5082:3
    at main.js:1:13

如何将.pem文件导入云代码?我尝试将它们重命名为.js但是Parse希望它们实际上是语法上的JS文件。想象一下。

1 个答案:

答案 0 :(得分:1)

我找到了解决此问题的方法,因为我遇到了类似的问题。我必须上传的任何非js文件我将重命名为.ejs。因此,解析CLI将上传它,您可以在云代码中使用它。