在让activeModelAdapter在.destroyRecord上发送DELETE请求时遇到了问题,我也尝试了使用.保存()的.deleteRecord,但得到了相同的结果....
我已经安装了rack-cors gem,所以我的api已经排除了跨源请求
错误:
开始选项“/brands/117”用于::1于2015-04-20 17:51:05 -0700〉操作控制器::路由错误(没有路由匹配[选项]“/brands/117”):
品牌控制人:
export default Ember.ArrayController.extend({
needs: 'application',
currentUser: Ember.computed.alias('controllers.application.currentUser'),
currentPath: Ember.computed.alias('controllers.application.currentPath'),
actions: {
deleteBrand: function(brand) {
brand.destroyRecord();
}
},
showButton: function() {
return this.currentPath === 'brands';
}.property('controllers.application.currentPath')
});
品牌模板:
<h2>Brands</h2>
{{#if showButton}}
{{#link-to 'brands.new' class="bam-btn submit login" tagName="button"}}Create A Brand{{/link-to}}
{{/if}}
{{outlet}}
{{search-brands}}
{{!-- LIST OF BRANDS --}}
<h2 class="bam-clear">List of {{ controllers.application.currentUser }} brands</h2>
<ul>
{{#each brand in model}}
{{#link-to 'brand.dashboard' brand.slug}}
<li><h3>{{brand.brand_name}}</h3></li>
<button id="deleteBrand" class="bam-btn alert" {{action 'deleteBrand' brand}}>Delete</button>
{{/link-to}}
{{/each}}
</ul>
1条答案
按热度按时间oaxa6hgo1#
只需要在我的RACK::Cors配置中包含:delete方法。