文件名称:xml_mapper:Elixir的简单XML映射器
文件大小:10KB
文件格式:ZIP
更新时间:2024-06-01 04:28:53
elixir xml Elixir
XML映射器 一个用于Elixir的简单XML映射器。 安装 def deps do [{ :xml_mapper , " ~> 1.0.0 " }] end 例子 defmodule Category do use XMLMapper element :id , :integer , tag: " ID " has_many :products , Product end defmodule Product do use XMLMapper tag " ProductItem " element :id , :integer , tag: " ID " element :name , :text end Category . to_xml (%{ id: 1 , products: [%{ id: 1 , name: " Product1 " }, %
【文件预览】:
xml_mapper-master
----mix.exs(741B)
----lib()
--------xml_mapper.ex(4KB)
--------xml_mapper()
----config()
--------config.exs(1KB)
----LICENSE(1KB)
----test()
--------xml_mapper()
--------test_helper.exs(160B)
----README.md(1KB)
----mix.lock(414B)
----.gitignore(530B)