如何使用angularjs和deployd

时间:2015-11-15 22:13:31

标签: angularjs image mongodb deployd

我正在开发一个应用程序,我需要从URLS检索图像(例如http://foo.com/bar.png)并将它们保存在mongodb中。该应用程序使用angularjs构建,并使用deployd作为API的东西。这是图像集的config.js文件:

{
    "type": "Collection",
    "properties": {
        "image": {
            "name": "image",
            "type": "image/png",
            "typeLabel": "image/png",
            "required": true,
            "id": "image",
            "order": 0
        }
    }
}

我试过搜索但是我无法找到任何图片和deployd。我只需要一种简单的方法从URL中检索图像,将它们保存在mongodb中,然后再渲染它们。

1 个答案:

答案 0 :(得分:1)

没有列类型image/png AFAIK。我们可以使用字符串代替它。为什么不将图像插入data uri

{
    "type": "Collection",
    "properties": {
        "image": {
            "name": "image",
            "type": "string",
            "typeLabel": "string",
            "required": true,
            "id": "image",
            "order": 0
        }
    }
}