我正在使用SimpleCart JS进行我正在进行的项目,但我有一些小问题。
当我尝试从购物车中删除某个商品时,它绝对没有...有SimpleCart的文档,但我认为它可以作为默认功能使用?
我在哪里或如何启动remove.item();功能
此处提供了文档:http://simplecartjs.org/documentation/simplecart-item-remove
simpleCart({
// array representing the format and columns of the cart,
// see the cart columns documentation
cartColumns: [
{ attr: "name" , label: "" } ,
{ attr: "quantity" , label: "" } ,
{ view:'remove', label: '' } ,
{ attr: "price" , label: "", view: 'currency' }
],
我希望我能够清楚地问这个问题!再次感谢。