gpt4 book ai didi

javascript - 如何使用 Angular2 初始化 Parse 并指向 serverURL

转载 作者:太空狗 更新时间:2023-10-29 18:07:27 25 4
gpt4 key购买 nike

我正在尝试使用 Parse 服务器,目前遇到了在 javascript 中初始化 Parse 并指向正确的 serverURL 的问题。想知道是否还有其他人幸运地使用 Angular2 做到了这一点?

最佳答案

对于使用 typescript 的框架(例如 angular 2、ionic 2 和 3),

解决typescript只读错误:

Typescript Error

Cannot assign to 'serverURL' because it is a constant or a read-onlyproperty.

Parse.serverURL = 'http://localhost:1337/parse';

使用 (Parse as any) 而不是 Parse 来设置 serverUrl 的值,例如:

import * as Parse from 'parse';

Parse.initialize('appId', 'jsKey'); // use your appID & your js key
(Parse as any).serverURL = 'http://localhost:1337/parse'; // use your server url

这需要安装 parse 和 @types/parse:

npm install --save @types/parse parse 

关于javascript - 如何使用 Angular2 初始化 Parse 并指向 serverURL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37868599/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com