我是 ember 的新手,我想发布一条新记录,所以我做了类似的事情:
App.AdminController = Em.Controller.extend
submit: ->
post = App.Post.createRecord()
post.set('author', $('#author').val())
post.set('title', $('#title').val())
post.set('intro', $('#intro').val())
post.set('description', $('#description').val())
post.set('publishedAt', new Date())
post.get('store').commit()
一切都像一个魅力,除了请求 json 文件中的publisedAt
属性 e为空post
我认为问题是由于我可能无法正确序列化它,知道吗?
更新模型:
App.Post = DS.Model.extend
title: DS.attr('string')
author: DS.attr('string')
intro: DS.attr('string')
description: DS.attr('string')
publishedat:DS.attr('date')