作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Ember-cli 开发我的第一个 ember 应用程序
在这里我想使用 cloudinary_js 添加图片上传功能
引用此 link
图像模型:
import DS from 'ember-data';
var attr = DS.attr;
export default DS.Model.extend({
imageUrl: attr('string'),
thumbImageUrl: attr('string'),
standardImageUrl: attr('string'),
favourite: attr('string'),
order: attr('number')
});
app.import('vendor/jquery-ui/jquery-ui.js');
app.import('vendor/jquery.iframe-transport/jquery.iframe-transport.js');
app.import('vendor/blueimp-file-upload/js/jquery.fileupload.js');
app.import('vendor/cloudinary_js/js/jquery.cloudinary.js');
import Ember from "ember";
export default Ember.View.extend({
tagName: "input",
type: "file",
accept: "image/*",
class: "cloudinary-fileupload",
dataCloudinaryField: "image_id",
attributeBindings: [ "name", "type", "value", "class"],
change: function() {
}
});
最佳答案
你需要一个初始化器来设置 cloud_name 和 api_key 特性。我会把这段代码放在 app/initializers/cloudinary.js 中。
export default {
name: 'cloudinary',
initialize: function() {
$.cloudinary.config({
cloud_name: 'MYCLOUD',
api_key: 'MYKEY'
});
}
};
关于ember.js - 将 cloudinary_js 与 ember 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24647066/
我正在使用 Ember-cli 开发我的第一个 ember 应用程序 在这里我想使用 cloudinary_js 添加图片上传功能 引用此 link 图像模型: import DS from 'emb
我是一名优秀的程序员,十分优秀!